]>
git.saurik.com Git - apt.git/blob - apt-pkg/contrib/strutl.h
1 // -*- mode: cpp; mode: fold -*-
3 // $Id: strutl.h,v 1.22 2003/02/02 22:20:27 jgg Exp $
4 /* ######################################################################
6 String Util - These are some useful string functions
8 _strstrip is a function to remove whitespace from the front and end
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>
14 ##################################################################### */
32 // Methods have a hidden this parameter that is visible to this attribute
33 #define APT_FORMAT2 __attribute__ ((format (printf, 2, 3)))
34 #define APT_FORMAT3 __attribute__ ((format (printf, 3, 4)))
40 bool UTF8ToCodeset(const char *codeset
, const string
&orig
, string
*dest
);
41 char *_strstrip(char *String
);
42 char *_strtabexpand(char *String
,size_t Len
);
43 bool ParseQuoteWord(const char *&String
,string
&Res
);
44 bool ParseCWord(const char *&String
,string
&Res
);
45 string
QuoteString(const string
&Str
,const char *Bad
);
46 string
DeQuoteString(const string
&Str
);
47 string
SizeToStr(double Bytes
);
48 string
TimeToStr(unsigned long Sec
);
49 string
Base64Encode(const string
&Str
);
50 string
URItoFileName(const string
&URI
);
51 string
TimeRFC1123(time_t Date
);
52 bool StrToTime(const string
&Val
,time_t &Result
);
53 string
LookupTag(const string
&Message
,const char *Tag
,const char *Default
= 0);
54 int StringToBool(const string
&Text
,int Default
= -1);
55 bool ReadMessages(int Fd
, vector
<string
> &List
);
56 bool StrToNum(const char *Str
,unsigned long &Res
,unsigned Len
,unsigned Base
= 0);
57 bool Hex2Num(const string
&Str
,unsigned char *Num
,unsigned int Length
);
58 bool TokSplitString(char Tok
,char *Input
,char **List
,
59 unsigned long ListMax
);
60 void ioprintf(ostream
&out
,const char *format
,...) APT_FORMAT2
;
61 char *safe_snprintf(char *Buffer
,char *End
,const char *Format
,...) APT_FORMAT3
;
62 bool CheckDomainList(const string
&Host
, const string
&List
);
64 #define APT_MKSTRCMP(name,func) \
65 inline int name(const char *A,const char *AEnd,const char *B) {return func(A,AEnd,B,B+strlen(B));}; \
66 inline int name(string A,const char *B) {return func(A.c_str(),A.c_str()+A.length(),B,B+strlen(B));}; \
67 inline int name(string A,string B) {return func(A.c_str(),A.c_str()+A.length(),B.c_str(),B.c_str()+B.length());}; \
68 inline int name(string A,const char *B,const char *BEnd) {return func(A.c_str(),A.c_str()+A.length(),B,BEnd);};
70 #define APT_MKSTRCMP2(name,func) \
71 inline int name(const char *A,const char *AEnd,const char *B) {return func(A,AEnd,B,B+strlen(B));}; \
72 inline int name(string A,const char *B) {return func(A.begin(),A.end(),B,B+strlen(B));}; \
73 inline int name(string A,string B) {return func(A.begin(),A.end(),B.begin(),B.end());}; \
74 inline int name(string A,const char *B,const char *BEnd) {return func(A.begin(),A.end(),B,BEnd);};
76 int stringcmp(const char *A
,const char *AEnd
,const char *B
,const char *BEnd
);
77 int stringcasecmp(const char *A
,const char *AEnd
,const char *B
,const char *BEnd
);
79 /* We assume that GCC 3 indicates that libstdc++3 is in use too. In that
80 case the definition of string::const_iterator is not the same as
81 const char * and we need these extra functions */
83 int stringcmp(string::const_iterator A
,string::const_iterator AEnd
,
84 const char *B
,const char *BEnd
);
85 int stringcmp(string::const_iterator A
,string::const_iterator AEnd
,
86 string::const_iterator B
,string::const_iterator BEnd
);
87 int stringcasecmp(string::const_iterator A
,string::const_iterator AEnd
,
88 const char *B
,const char *BEnd
);
89 int stringcasecmp(string::const_iterator A
,string::const_iterator AEnd
,
90 string::const_iterator B
,string::const_iterator BEnd
);
92 inline int stringcmp(string::const_iterator A
,string::const_iterator Aend
,const char *B
) {return stringcmp(A
,Aend
,B
,B
+strlen(B
));};
93 inline int stringcasecmp(string::const_iterator A
,string::const_iterator Aend
,const char *B
) {return stringcasecmp(A
,Aend
,B
,B
+strlen(B
));};
96 APT_MKSTRCMP2(stringcmp
,stringcmp
);
97 APT_MKSTRCMP2(stringcasecmp
,stringcasecmp
);
99 inline const char *DeNull(const char *s
) {return (s
== 0?"(null)":s
);};
103 void CopyFrom(const string
&From
);
115 inline void operator =(const string
&From
) {CopyFrom(From
);};
116 inline bool empty() {return Access
.empty();};
117 static string
SiteOnly(const string
&URI
);
119 URI(string Path
) {CopyFrom(Path
);};
126 const string
*Contents
;
128 string
SubstVar(string Str
,const struct SubstVar
*Vars
);
129 string
SubstVar(const string
&Str
,const string
&Subst
,const string
&Contents
);
137 unsigned long RegexChoice(RxChoiceList
*Rxs
,const char **ListBegin
,
138 const char **ListEnd
);