]> git.saurik.com Git - apt.git/blame - apt-pkg/contrib/strutl.h
releasing package apt version 0.9.13~exp1
[apt.git] / apt-pkg / contrib / strutl.h
CommitLineData
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
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
6dc60370
DK
28#include "macros.h"
29
a4f6bdc8
DK
30#ifndef APT_8_CLEANER_HEADERS
31using std::string;
32using std::vector;
33using std::ostream;
34#endif
35
65dbd5a1
MV
36namespace APT {
37 namespace String {
38 std::string Strip(const std::string &s);
39 };
40};
41
42
8f3ba4e8 43bool UTF8ToCodeset(const char *codeset, const std::string &orig, std::string *dest);
6c139d6e 44char *_strstrip(char *String);
4fb400a6 45char *_strrstrip(char *String); // right strip only
6c139d6e 46char *_strtabexpand(char *String,size_t Len);
8f3ba4e8
DK
47bool ParseQuoteWord(const char *&String,std::string &Res);
48bool ParseCWord(const char *&String,std::string &Res);
49std::string QuoteString(const std::string &Str,const char *Bad);
50std::string DeQuoteString(const std::string &Str);
51std::string DeQuoteString(std::string::const_iterator const &begin, std::string::const_iterator const &end);
a513ace2 52
b9dc4706 53// unescape (\0XX and \xXX) from a string
8f3ba4e8
DK
54std::string DeEscapeString(const std::string &input);
55
56std::string SizeToStr(double Bytes);
57std::string TimeToStr(unsigned long Sec);
58std::string Base64Encode(const std::string &Str);
59std::string OutputInDepth(const unsigned long Depth, const char* Separator=" ");
60std::string URItoFileName(const std::string &URI);
61std::string TimeRFC1123(time_t Date);
96cc64a5
DK
62bool RFC1123StrToTime(const char* const str,time_t &time) __must_check;
63bool FTPMDTMStrToTime(const char* const str,time_t &time) __must_check;
8f3ba4e8
DK
64__deprecated bool StrToTime(const std::string &Val,time_t &Result);
65std::string LookupTag(const std::string &Message,const char *Tag,const char *Default = 0);
66int StringToBool(const std::string &Text,int Default = -1);
67bool ReadMessages(int Fd, std::vector<std::string> &List);
ddc1d8d0 68bool StrToNum(const char *Str,unsigned long &Res,unsigned Len,unsigned Base = 0);
650faab0 69bool StrToNum(const char *Str,unsigned long long &Res,unsigned Len,unsigned Base = 0);
f688d1d3 70bool Base256ToNum(const char *Str,unsigned long &Res,unsigned int Len);
8f3ba4e8 71bool Hex2Num(const std::string &Str,unsigned char *Num,unsigned int Length);
9572a54b
MV
72
73// input changing string split
b2e465d6
AL
74bool TokSplitString(char Tok,char *Input,char **List,
75 unsigned long ListMax);
9572a54b
MV
76
77// split a given string by a char
8f3ba4e8 78std::vector<std::string> VectorizeString(std::string const &haystack, char const &split) __attrib_const;
9572a54b 79
41053d72
MV
80/* \brief Return a vector of strings from string "input" where "sep"
81 * is used as the delimiter string.
82 *
83 * \param input The input string.
84 *
85 * \param sep The seperator to use.
86 *
87 * \param maxsplit (optional) The maximum amount of splitting that
88 * should be done .
89 *
90 * The optional "maxsplit" argument can be used to limit the splitting,
91 * if used the string is only split on maxsplit places and the last
92 * item in the vector contains the remainder string.
93 */
94std::vector<std::string> StringSplit(std::string const &input,
95 std::string const &sep,
2ddab3fb 96 unsigned int maxsplit=std::numeric_limits<unsigned int>::max()) __attrib_const;
9572a54b 97
8f3ba4e8
DK
98void ioprintf(std::ostream &out,const char *format,...) __like_printf(2);
99void strprintf(std::string &out,const char *format,...) __like_printf(2);
6dc60370 100char *safe_snprintf(char *Buffer,char *End,const char *Format,...) __like_printf(3);
8f3ba4e8 101bool CheckDomainList(const std::string &Host, const std::string &List);
6dc60370 102int tolower_ascii(int const c) __attrib_const __hot;
8f3ba4e8 103std::string StripEpoch(const std::string &VerStr);
6c139d6e 104
c24972cb 105#define APT_MKSTRCMP(name,func) \
76fcbe5c 106inline int name(const char *A,const char *B) {return func(A,A+strlen(A),B,B+strlen(B));}; \
c24972cb 107inline int name(const char *A,const char *AEnd,const char *B) {return func(A,AEnd,B,B+strlen(B));}; \
8f3ba4e8
DK
108inline int name(const std::string& A,const char *B) {return func(A.c_str(),A.c_str()+A.length(),B,B+strlen(B));}; \
109inline 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());}; \
110inline 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 111
47db8997
AL
112#define APT_MKSTRCMP2(name,func) \
113inline int name(const char *A,const char *AEnd,const char *B) {return func(A,AEnd,B,B+strlen(B));}; \
8f3ba4e8
DK
114inline int name(const std::string& A,const char *B) {return func(A.begin(),A.end(),B,B+strlen(B));}; \
115inline int name(const std::string& A,const std::string& B) {return func(A.begin(),A.end(),B.begin(),B.end());}; \
116inline int name(const std::string& A,const char *B,const char *BEnd) {return func(A.begin(),A.end(),B,BEnd);};
47db8997 117
c24972cb 118int stringcmp(const char *A,const char *AEnd,const char *B,const char *BEnd);
ae0b19f5
AL
119int stringcasecmp(const char *A,const char *AEnd,const char *B,const char *BEnd);
120
121/* We assume that GCC 3 indicates that libstdc++3 is in use too. In that
122 case the definition of string::const_iterator is not the same as
123 const char * and we need these extra functions */
124#if __GNUC__ >= 3
8f3ba4e8 125int stringcmp(std::string::const_iterator A,std::string::const_iterator AEnd,
47db8997 126 const char *B,const char *BEnd);
8f3ba4e8
DK
127int stringcmp(std::string::const_iterator A,std::string::const_iterator AEnd,
128 std::string::const_iterator B,std::string::const_iterator BEnd);
129int stringcasecmp(std::string::const_iterator A,std::string::const_iterator AEnd,
47db8997 130 const char *B,const char *BEnd);
8f3ba4e8
DK
131int stringcasecmp(std::string::const_iterator A,std::string::const_iterator AEnd,
132 std::string::const_iterator B,std::string::const_iterator BEnd);
c24972cb 133
8f3ba4e8
DK
134inline int stringcmp(std::string::const_iterator A,std::string::const_iterator Aend,const char *B) {return stringcmp(A,Aend,B,B+strlen(B));};
135inline 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
136#endif
137
47db8997
AL
138APT_MKSTRCMP2(stringcmp,stringcmp);
139APT_MKSTRCMP2(stringcasecmp,stringcasecmp);
0db4a45b 140
b9179170
MV
141// Return the length of a NULL-terminated string array
142size_t strv_length(const char **str_array);
143
144
0db4a45b 145inline const char *DeNull(const char *s) {return (s == 0?"(null)":s);};
6c139d6e 146
93bf083d
AL
147class URI
148{
8f3ba4e8 149 void CopyFrom(const std::string &From);
be4401bf 150
93bf083d
AL
151 public:
152
8f3ba4e8
DK
153 std::string Access;
154 std::string User;
155 std::string Password;
156 std::string Host;
157 std::string Path;
93bf083d
AL
158 unsigned int Port;
159
8f3ba4e8
DK
160 operator std::string();
161 inline void operator =(const std::string &From) {CopyFrom(From);};
be4401bf 162 inline bool empty() {return Access.empty();};
8f3ba4e8
DK
163 static std::string SiteOnly(const std::string &URI);
164 static std::string NoUserPassword(const std::string &URI);
93bf083d 165
8f3ba4e8 166 URI(std::string Path) {CopyFrom(Path);};
be4401bf 167 URI() : Port(0) {};
93bf083d
AL
168};
169
b2e465d6
AL
170struct SubstVar
171{
172 const char *Subst;
8f3ba4e8 173 const std::string *Contents;
b2e465d6 174};
8f3ba4e8
DK
175std::string SubstVar(std::string Str,const struct SubstVar *Vars);
176std::string SubstVar(const std::string &Str,const std::string &Subst,const std::string &Contents);
b2e465d6
AL
177
178struct RxChoiceList
179{
180 void *UserData;
181 const char *Str;
182 bool Hit;
183};
184unsigned long RegexChoice(RxChoiceList *Rxs,const char **ListBegin,
185 const char **ListEnd);
186
6c139d6e 187#endif