merged from the debian-sid branch
[ntk/apt.git] / apt-pkg / contrib / strutl.h
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 using std::string;
29 using std::vector;
30 using std::ostream;
31
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)))
35 #define APT_FORMAT3 __attribute__ ((format (printf, 3, 4)))
36 #else
37 #define APT_FORMAT2
38 #define APT_FORMAT3
39 #endif
40
41 bool UTF8ToCodeset(const char *codeset, const string &orig, string *dest);
42 char *_strstrip(char *String);
43 char *_strtabexpand(char *String,size_t Len);
44 bool ParseQuoteWord(const char *&String,string &Res);
45 bool ParseCWord(const char *&String,string &Res);
46 string QuoteString(const string &Str,const char *Bad);
47 string DeQuoteString(const string &Str);
48 string SizeToStr(double Bytes);
49 string TimeToStr(unsigned long Sec);
50 string Base64Encode(const string &Str);
51 string URItoFileName(const string &URI);
52 string TimeRFC1123(time_t Date);
53 bool StrToTime(const string &Val,time_t &Result);
54 string LookupTag(const string &Message,const char *Tag,const char *Default = 0);
55 int StringToBool(const string &Text,int Default = -1);
56 bool ReadMessages(int Fd, vector<string> &List);
57 bool StrToNum(const char *Str,unsigned long &Res,unsigned Len,unsigned Base = 0);
58 bool Hex2Num(const string &Str,unsigned char *Num,unsigned int Length);
59 bool TokSplitString(char Tok,char *Input,char **List,
60 unsigned long ListMax);
61 void ioprintf(ostream &out,const char *format,...) APT_FORMAT2;
62 void strprintf(string &out,const char *format,...) APT_FORMAT2;
63 char *safe_snprintf(char *Buffer,char *End,const char *Format,...) APT_FORMAT3;
64 bool CheckDomainList(const string &Host, const string &List);
65 int tolower_ascii(int c);
66
67 #define APT_MKSTRCMP(name,func) \
68 inline int name(const char *A,const char *AEnd,const char *B) {return func(A,AEnd,B,B+strlen(B));}; \
69 inline int name(string A,const char *B) {return func(A.c_str(),A.c_str()+A.length(),B,B+strlen(B));}; \
70 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());}; \
71 inline int name(string A,const char *B,const char *BEnd) {return func(A.c_str(),A.c_str()+A.length(),B,BEnd);};
72
73 #define APT_MKSTRCMP2(name,func) \
74 inline int name(const char *A,const char *AEnd,const char *B) {return func(A,AEnd,B,B+strlen(B));}; \
75 inline int name(string A,const char *B) {return func(A.begin(),A.end(),B,B+strlen(B));}; \
76 inline int name(string A,string B) {return func(A.begin(),A.end(),B.begin(),B.end());}; \
77 inline int name(string A,const char *B,const char *BEnd) {return func(A.begin(),A.end(),B,BEnd);};
78
79 int stringcmp(const char *A,const char *AEnd,const char *B,const char *BEnd);
80 int stringcasecmp(const char *A,const char *AEnd,const char *B,const char *BEnd);
81
82 /* We assume that GCC 3 indicates that libstdc++3 is in use too. In that
83 case the definition of string::const_iterator is not the same as
84 const char * and we need these extra functions */
85 #if __GNUC__ >= 3
86 int stringcmp(string::const_iterator A,string::const_iterator AEnd,
87 const char *B,const char *BEnd);
88 int stringcmp(string::const_iterator A,string::const_iterator AEnd,
89 string::const_iterator B,string::const_iterator BEnd);
90 int stringcasecmp(string::const_iterator A,string::const_iterator AEnd,
91 const char *B,const char *BEnd);
92 int stringcasecmp(string::const_iterator A,string::const_iterator AEnd,
93 string::const_iterator B,string::const_iterator BEnd);
94
95 inline int stringcmp(string::const_iterator A,string::const_iterator Aend,const char *B) {return stringcmp(A,Aend,B,B+strlen(B));};
96 inline int stringcasecmp(string::const_iterator A,string::const_iterator Aend,const char *B) {return stringcasecmp(A,Aend,B,B+strlen(B));};
97 #endif
98
99 APT_MKSTRCMP2(stringcmp,stringcmp);
100 APT_MKSTRCMP2(stringcasecmp,stringcasecmp);
101
102 inline const char *DeNull(const char *s) {return (s == 0?"(null)":s);};
103
104 class URI
105 {
106 void CopyFrom(const string &From);
107
108 public:
109
110 string Access;
111 string User;
112 string Password;
113 string Host;
114 string Path;
115 unsigned int Port;
116
117 operator string();
118 inline void operator =(const string &From) {CopyFrom(From);};
119 inline bool empty() {return Access.empty();};
120 static string SiteOnly(const string &URI);
121
122 URI(string Path) {CopyFrom(Path);};
123 URI() : Port(0) {};
124 };
125
126 struct SubstVar
127 {
128 const char *Subst;
129 const string *Contents;
130 };
131 string SubstVar(string Str,const struct SubstVar *Vars);
132 string SubstVar(const string &Str,const string &Subst,const string &Contents);
133
134 struct RxChoiceList
135 {
136 void *UserData;
137 const char *Str;
138 bool Hit;
139 };
140 unsigned long RegexChoice(RxChoiceList *Rxs,const char **ListBegin,
141 const char **ListEnd);
142
143 #undef APT_FORMAT2
144
145 #endif