]>
Commit | Line | Data |
---|---|---|
1 | // -*- mode: cpp; mode: fold -*- | |
2 | // Description /*{{{*/ | |
3 | // $Id: strutl.h,v 1.22 2003/02/02 22:20:27 jgg Exp $ | |
4 | /* ###################################################################### | |
5 | ||
6 | String Util - These are some useful string functions | |
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 | /*}}}*/ | |
16 | #ifndef STRUTL_H | |
17 | #define STRUTL_H | |
18 | ||
19 | ||
20 | ||
21 | #include <stdlib.h> | |
22 | #include <string> | |
23 | #include <cstring> | |
24 | #include <vector> | |
25 | #include <iostream> | |
26 | #include <time.h> | |
27 | ||
28 | #include "macros.h" | |
29 | ||
30 | #ifndef APT_8_CLEANER_HEADERS | |
31 | using std::string; | |
32 | using std::vector; | |
33 | using std::ostream; | |
34 | #endif | |
35 | ||
36 | bool UTF8ToCodeset(const char *codeset, const std::string &orig, std::string *dest); | |
37 | char *_strstrip(char *String); | |
38 | char *_strtabexpand(char *String,size_t Len); | |
39 | bool ParseQuoteWord(const char *&String,std::string &Res); | |
40 | bool ParseCWord(const char *&String,std::string &Res); | |
41 | std::string QuoteString(const std::string &Str,const char *Bad); | |
42 | std::string DeQuoteString(const std::string &Str); | |
43 | std::string DeQuoteString(std::string::const_iterator const &begin, std::string::const_iterator const &end); | |
44 | ||
45 | // unescape (\0XX and \xXX) from a string | |
46 | std::string DeEscapeString(const std::string &input); | |
47 | ||
48 | std::string SizeToStr(double Bytes); | |
49 | std::string TimeToStr(unsigned long Sec); | |
50 | std::string Base64Encode(const std::string &Str); | |
51 | std::string OutputInDepth(const unsigned long Depth, const char* Separator=" "); | |
52 | std::string URItoFileName(const std::string &URI); | |
53 | std::string TimeRFC1123(time_t Date); | |
54 | bool RFC1123StrToTime(const char* const str,time_t &time) __must_check; | |
55 | bool FTPMDTMStrToTime(const char* const str,time_t &time) __must_check; | |
56 | __deprecated bool StrToTime(const std::string &Val,time_t &Result); | |
57 | std::string LookupTag(const std::string &Message,const char *Tag,const char *Default = 0); | |
58 | int StringToBool(const std::string &Text,int Default = -1); | |
59 | bool ReadMessages(int Fd, std::vector<std::string> &List); | |
60 | bool StrToNum(const char *Str,unsigned long &Res,unsigned Len,unsigned Base = 0); | |
61 | bool StrToNum(const char *Str,unsigned long long &Res,unsigned Len,unsigned Base = 0); | |
62 | bool Base256ToNum(const char *Str,unsigned long &Res,unsigned int Len); | |
63 | bool Hex2Num(const std::string &Str,unsigned char *Num,unsigned int Length); | |
64 | bool TokSplitString(char Tok,char *Input,char **List, | |
65 | unsigned long ListMax); | |
66 | std::vector<std::string> VectorizeString(std::string const &haystack, char const &split) __attrib_const; | |
67 | void ioprintf(std::ostream &out,const char *format,...) __like_printf(2); | |
68 | void strprintf(std::string &out,const char *format,...) __like_printf(2); | |
69 | char *safe_snprintf(char *Buffer,char *End,const char *Format,...) __like_printf(3); | |
70 | bool CheckDomainList(const std::string &Host, const std::string &List); | |
71 | int tolower_ascii(int const c) __attrib_const __hot; | |
72 | std::string StripEpoch(const std::string &VerStr); | |
73 | ||
74 | #define APT_MKSTRCMP(name,func) \ | |
75 | inline int name(const char *A,const char *B) {return func(A,A+strlen(A),B,B+strlen(B));}; \ | |
76 | inline int name(const char *A,const char *AEnd,const char *B) {return func(A,AEnd,B,B+strlen(B));}; \ | |
77 | inline int name(const std::string& A,const char *B) {return func(A.c_str(),A.c_str()+A.length(),B,B+strlen(B));}; \ | |
78 | 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());}; \ | |
79 | 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);}; | |
80 | ||
81 | #define APT_MKSTRCMP2(name,func) \ | |
82 | inline int name(const char *A,const char *AEnd,const char *B) {return func(A,AEnd,B,B+strlen(B));}; \ | |
83 | inline int name(const std::string& A,const char *B) {return func(A.begin(),A.end(),B,B+strlen(B));}; \ | |
84 | inline int name(const std::string& A,const std::string& B) {return func(A.begin(),A.end(),B.begin(),B.end());}; \ | |
85 | inline int name(const std::string& A,const char *B,const char *BEnd) {return func(A.begin(),A.end(),B,BEnd);}; | |
86 | ||
87 | int stringcmp(const char *A,const char *AEnd,const char *B,const char *BEnd); | |
88 | int stringcasecmp(const char *A,const char *AEnd,const char *B,const char *BEnd); | |
89 | ||
90 | /* We assume that GCC 3 indicates that libstdc++3 is in use too. In that | |
91 | case the definition of string::const_iterator is not the same as | |
92 | const char * and we need these extra functions */ | |
93 | #if __GNUC__ >= 3 | |
94 | int stringcmp(std::string::const_iterator A,std::string::const_iterator AEnd, | |
95 | const char *B,const char *BEnd); | |
96 | int stringcmp(std::string::const_iterator A,std::string::const_iterator AEnd, | |
97 | std::string::const_iterator B,std::string::const_iterator BEnd); | |
98 | int stringcasecmp(std::string::const_iterator A,std::string::const_iterator AEnd, | |
99 | const char *B,const char *BEnd); | |
100 | int stringcasecmp(std::string::const_iterator A,std::string::const_iterator AEnd, | |
101 | std::string::const_iterator B,std::string::const_iterator BEnd); | |
102 | ||
103 | inline int stringcmp(std::string::const_iterator A,std::string::const_iterator Aend,const char *B) {return stringcmp(A,Aend,B,B+strlen(B));}; | |
104 | inline int stringcasecmp(std::string::const_iterator A,std::string::const_iterator Aend,const char *B) {return stringcasecmp(A,Aend,B,B+strlen(B));}; | |
105 | #endif | |
106 | ||
107 | APT_MKSTRCMP2(stringcmp,stringcmp); | |
108 | APT_MKSTRCMP2(stringcasecmp,stringcasecmp); | |
109 | ||
110 | inline const char *DeNull(const char *s) {return (s == 0?"(null)":s);}; | |
111 | ||
112 | class URI | |
113 | { | |
114 | void CopyFrom(const std::string &From); | |
115 | ||
116 | public: | |
117 | ||
118 | std::string Access; | |
119 | std::string User; | |
120 | std::string Password; | |
121 | std::string Host; | |
122 | std::string Path; | |
123 | unsigned int Port; | |
124 | ||
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 | ||
131 | URI(std::string Path) {CopyFrom(Path);}; | |
132 | URI() : Port(0) {}; | |
133 | }; | |
134 | ||
135 | struct SubstVar | |
136 | { | |
137 | const char *Subst; | |
138 | const std::string *Contents; | |
139 | }; | |
140 | std::string SubstVar(std::string Str,const struct SubstVar *Vars); | |
141 | std::string SubstVar(const std::string &Str,const std::string &Subst,const std::string &Contents); | |
142 | ||
143 | struct RxChoiceList | |
144 | { | |
145 | void *UserData; | |
146 | const char *Str; | |
147 | bool Hit; | |
148 | }; | |
149 | unsigned long RegexChoice(RxChoiceList *Rxs,const char **ListBegin, | |
150 | const char **ListEnd); | |
151 | ||
152 | #endif |