]>
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 | |
492f957a | 20 | |
6c139d6e AL |
21 | #include <stdlib.h> |
22 | #include <string> | |
a7955daa | 23 | #include <cstring> |
0a8a80e5 | 24 | #include <vector> |
0db4a45b | 25 | #include <iostream> |
492f957a | 26 | #include <time.h> |
6c139d6e | 27 | |
0db4a45b AL |
28 | using std::string; |
29 | using std::vector; | |
30 | using std::ostream; | |
31 | ||
b2e465d6 AL |
32 | #ifdef __GNUG__ |
33 | // Methods have a hidden this parameter that is visible to this attribute | |
34 | #define APT_FORMAT2 __attribute__ ((format (printf, 2, 3))) | |
1168596f | 35 | #define APT_FORMAT3 __attribute__ ((format (printf, 3, 4))) |
b2e465d6 AL |
36 | #else |
37 | #define APT_FORMAT2 | |
1168596f | 38 | #define APT_FORMAT3 |
b2e465d6 | 39 | #endif |
a52f938b OS |
40 | |
41 | bool UTF8ToCodeset(const char *codeset, const string &orig, string *dest); | |
6c139d6e AL |
42 | char *_strstrip(char *String); |
43 | char *_strtabexpand(char *String,size_t Len); | |
44 | bool ParseQuoteWord(const char *&String,string &Res); | |
b2e465d6 | 45 | bool ParseCWord(const char *&String,string &Res); |
171c75f1 MV |
46 | string QuoteString(const string &Str,const char *Bad); |
47 | string DeQuoteString(const string &Str); | |
6c139d6e AL |
48 | string SizeToStr(double Bytes); |
49 | string TimeToStr(unsigned long Sec); | |
171c75f1 | 50 | string Base64Encode(const string &Str); |
fa3b0945 | 51 | string OutputInDepth(const unsigned long Depth, const char* Separator=" "); |
171c75f1 | 52 | string URItoFileName(const string &URI); |
0a8a80e5 | 53 | string TimeRFC1123(time_t Date); |
171c75f1 MV |
54 | bool StrToTime(const string &Val,time_t &Result); |
55 | string LookupTag(const string &Message,const char *Tag,const char *Default = 0); | |
56 | int StringToBool(const string &Text,int Default = -1); | |
0a8a80e5 | 57 | bool ReadMessages(int Fd, vector<string> &List); |
ddc1d8d0 | 58 | bool StrToNum(const char *Str,unsigned long &Res,unsigned Len,unsigned Base = 0); |
171c75f1 | 59 | bool Hex2Num(const string &Str,unsigned char *Num,unsigned int Length); |
b2e465d6 AL |
60 | bool TokSplitString(char Tok,char *Input,char **List, |
61 | unsigned long ListMax); | |
d7cf5923 | 62 | vector<string> ExplodeString(string const &haystack, char const &split); |
b2e465d6 | 63 | void ioprintf(ostream &out,const char *format,...) APT_FORMAT2; |
d4cd303e | 64 | void strprintf(string &out,const char *format,...) APT_FORMAT2; |
1168596f | 65 | char *safe_snprintf(char *Buffer,char *End,const char *Format,...) APT_FORMAT3; |
171c75f1 | 66 | bool CheckDomainList(const string &Host, const string &List); |
4e86942a | 67 | int tolower_ascii(int c); |
6c139d6e | 68 | |
c24972cb | 69 | #define APT_MKSTRCMP(name,func) \ |
76fcbe5c | 70 | inline int name(const char *A,const char *B) {return func(A,A+strlen(A),B,B+strlen(B));}; \ |
c24972cb | 71 | inline int name(const char *A,const char *AEnd,const char *B) {return func(A,AEnd,B,B+strlen(B));}; \ |
5cbf7810 DK |
72 | inline int name(const string& A,const char *B) {return func(A.c_str(),A.c_str()+A.length(),B,B+strlen(B));}; \ |
73 | inline int name(const string& A,const string& B) {return func(A.c_str(),A.c_str()+A.length(),B.c_str(),B.c_str()+B.length());}; \ | |
74 | inline int name(const string& A,const char *B,const char *BEnd) {return func(A.c_str(),A.c_str()+A.length(),B,BEnd);}; | |
0db4a45b | 75 | |
47db8997 AL |
76 | #define APT_MKSTRCMP2(name,func) \ |
77 | inline int name(const char *A,const char *AEnd,const char *B) {return func(A,AEnd,B,B+strlen(B));}; \ | |
5cbf7810 DK |
78 | inline int name(const string& A,const char *B) {return func(A.begin(),A.end(),B,B+strlen(B));}; \ |
79 | inline int name(const string& A,const string& B) {return func(A.begin(),A.end(),B.begin(),B.end());}; \ | |
80 | inline int name(const string& A,const char *B,const char *BEnd) {return func(A.begin(),A.end(),B,BEnd);}; | |
47db8997 | 81 | |
c24972cb | 82 | int stringcmp(const char *A,const char *AEnd,const char *B,const char *BEnd); |
ae0b19f5 AL |
83 | int stringcasecmp(const char *A,const char *AEnd,const char *B,const char *BEnd); |
84 | ||
85 | /* We assume that GCC 3 indicates that libstdc++3 is in use too. In that | |
86 | case the definition of string::const_iterator is not the same as | |
87 | const char * and we need these extra functions */ | |
88 | #if __GNUC__ >= 3 | |
47db8997 AL |
89 | int stringcmp(string::const_iterator A,string::const_iterator AEnd, |
90 | const char *B,const char *BEnd); | |
91 | int stringcmp(string::const_iterator A,string::const_iterator AEnd, | |
92 | string::const_iterator B,string::const_iterator BEnd); | |
47db8997 AL |
93 | int stringcasecmp(string::const_iterator A,string::const_iterator AEnd, |
94 | const char *B,const char *BEnd); | |
95 | int stringcasecmp(string::const_iterator A,string::const_iterator AEnd, | |
96 | string::const_iterator B,string::const_iterator BEnd); | |
c24972cb | 97 | |
ae0b19f5 AL |
98 | inline int stringcmp(string::const_iterator A,string::const_iterator Aend,const char *B) {return stringcmp(A,Aend,B,B+strlen(B));}; |
99 | inline int stringcasecmp(string::const_iterator A,string::const_iterator Aend,const char *B) {return stringcasecmp(A,Aend,B,B+strlen(B));}; | |
100 | #endif | |
101 | ||
47db8997 AL |
102 | APT_MKSTRCMP2(stringcmp,stringcmp); |
103 | APT_MKSTRCMP2(stringcasecmp,stringcasecmp); | |
0db4a45b AL |
104 | |
105 | inline const char *DeNull(const char *s) {return (s == 0?"(null)":s);}; | |
6c139d6e | 106 | |
93bf083d AL |
107 | class URI |
108 | { | |
171c75f1 | 109 | void CopyFrom(const string &From); |
be4401bf | 110 | |
93bf083d AL |
111 | public: |
112 | ||
113 | string Access; | |
114 | string User; | |
115 | string Password; | |
116 | string Host; | |
117 | string Path; | |
118 | unsigned int Port; | |
119 | ||
492f957a | 120 | operator string(); |
171c75f1 | 121 | inline void operator =(const string &From) {CopyFrom(From);}; |
be4401bf | 122 | inline bool empty() {return Access.empty();}; |
171c75f1 | 123 | static string SiteOnly(const string &URI); |
5e02df82 | 124 | static string NoUserPassword(const string &URI); |
93bf083d | 125 | |
be4401bf AL |
126 | URI(string Path) {CopyFrom(Path);}; |
127 | URI() : Port(0) {}; | |
93bf083d AL |
128 | }; |
129 | ||
b2e465d6 AL |
130 | struct SubstVar |
131 | { | |
132 | const char *Subst; | |
133 | const string *Contents; | |
134 | }; | |
135 | string SubstVar(string Str,const struct SubstVar *Vars); | |
171c75f1 | 136 | string SubstVar(const string &Str,const string &Subst,const string &Contents); |
b2e465d6 AL |
137 | |
138 | struct RxChoiceList | |
139 | { | |
140 | void *UserData; | |
141 | const char *Str; | |
142 | bool Hit; | |
143 | }; | |
144 | unsigned long RegexChoice(RxChoiceList *Rxs,const char **ListBegin, | |
145 | const char **ListEnd); | |
146 | ||
147 | #undef APT_FORMAT2 | |
148 | ||
6c139d6e | 149 | #endif |