implement StringSplit() as we need this to fix the dpkg status-fd output parsing
[ntk/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
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
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
8f3ba4e8 36bool UTF8ToCodeset(const char *codeset, const std::string &orig, std::string *dest);
6c139d6e 37char *_strstrip(char *String);
4fb400a6 38char *_strrstrip(char *String); // right strip only
6c139d6e 39char *_strtabexpand(char *String,size_t Len);
8f3ba4e8
DK
40bool ParseQuoteWord(const char *&String,std::string &Res);
41bool ParseCWord(const char *&String,std::string &Res);
42std::string QuoteString(const std::string &Str,const char *Bad);
43std::string DeQuoteString(const std::string &Str);
44std::string DeQuoteString(std::string::const_iterator const &begin, std::string::const_iterator const &end);
a513ace2 45
b9dc4706 46// unescape (\0XX and \xXX) from a string
8f3ba4e8
DK
47std::string DeEscapeString(const std::string &input);
48
49std::string SizeToStr(double Bytes);
50std::string TimeToStr(unsigned long Sec);
51std::string Base64Encode(const std::string &Str);
52std::string OutputInDepth(const unsigned long Depth, const char* Separator=" ");
53std::string URItoFileName(const std::string &URI);
54std::string TimeRFC1123(time_t Date);
96cc64a5
DK
55bool RFC1123StrToTime(const char* const str,time_t &time) __must_check;
56bool FTPMDTMStrToTime(const char* const str,time_t &time) __must_check;
8f3ba4e8
DK
57__deprecated bool StrToTime(const std::string &Val,time_t &Result);
58std::string LookupTag(const std::string &Message,const char *Tag,const char *Default = 0);
59int StringToBool(const std::string &Text,int Default = -1);
60bool ReadMessages(int Fd, std::vector<std::string> &List);
ddc1d8d0 61bool StrToNum(const char *Str,unsigned long &Res,unsigned Len,unsigned Base = 0);
650faab0 62bool StrToNum(const char *Str,unsigned long long &Res,unsigned Len,unsigned Base = 0);
f688d1d3 63bool Base256ToNum(const char *Str,unsigned long &Res,unsigned int Len);
8f3ba4e8 64bool Hex2Num(const std::string &Str,unsigned char *Num,unsigned int Length);
b2e465d6
AL
65bool TokSplitString(char Tok,char *Input,char **List,
66 unsigned long ListMax);
8f3ba4e8 67std::vector<std::string> VectorizeString(std::string const &haystack, char const &split) __attrib_const;
00f4d9ff
MV
68// like python string.split
69std::vector<std::string> StringSplit(std::string const &haystack, std::string const &sep) __attrib_const;
8f3ba4e8
DK
70void ioprintf(std::ostream &out,const char *format,...) __like_printf(2);
71void strprintf(std::string &out,const char *format,...) __like_printf(2);
6dc60370 72char *safe_snprintf(char *Buffer,char *End,const char *Format,...) __like_printf(3);
8f3ba4e8 73bool CheckDomainList(const std::string &Host, const std::string &List);
6dc60370 74int tolower_ascii(int const c) __attrib_const __hot;
8f3ba4e8 75std::string StripEpoch(const std::string &VerStr);
6c139d6e 76
c24972cb 77#define APT_MKSTRCMP(name,func) \
76fcbe5c 78inline int name(const char *A,const char *B) {return func(A,A+strlen(A),B,B+strlen(B));}; \
c24972cb 79inline int name(const char *A,const char *AEnd,const char *B) {return func(A,AEnd,B,B+strlen(B));}; \
8f3ba4e8
DK
80inline int name(const std::string& A,const char *B) {return func(A.c_str(),A.c_str()+A.length(),B,B+strlen(B));}; \
81inline 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());}; \
82inline 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 83
47db8997
AL
84#define APT_MKSTRCMP2(name,func) \
85inline int name(const char *A,const char *AEnd,const char *B) {return func(A,AEnd,B,B+strlen(B));}; \
8f3ba4e8
DK
86inline int name(const std::string& A,const char *B) {return func(A.begin(),A.end(),B,B+strlen(B));}; \
87inline int name(const std::string& A,const std::string& B) {return func(A.begin(),A.end(),B.begin(),B.end());}; \
88inline int name(const std::string& A,const char *B,const char *BEnd) {return func(A.begin(),A.end(),B,BEnd);};
47db8997 89
c24972cb 90int stringcmp(const char *A,const char *AEnd,const char *B,const char *BEnd);
ae0b19f5
AL
91int stringcasecmp(const char *A,const char *AEnd,const char *B,const char *BEnd);
92
93/* We assume that GCC 3 indicates that libstdc++3 is in use too. In that
94 case the definition of string::const_iterator is not the same as
95 const char * and we need these extra functions */
96#if __GNUC__ >= 3
8f3ba4e8 97int stringcmp(std::string::const_iterator A,std::string::const_iterator AEnd,
47db8997 98 const char *B,const char *BEnd);
8f3ba4e8
DK
99int stringcmp(std::string::const_iterator A,std::string::const_iterator AEnd,
100 std::string::const_iterator B,std::string::const_iterator BEnd);
101int stringcasecmp(std::string::const_iterator A,std::string::const_iterator AEnd,
47db8997 102 const char *B,const char *BEnd);
8f3ba4e8
DK
103int stringcasecmp(std::string::const_iterator A,std::string::const_iterator AEnd,
104 std::string::const_iterator B,std::string::const_iterator BEnd);
c24972cb 105
8f3ba4e8
DK
106inline int stringcmp(std::string::const_iterator A,std::string::const_iterator Aend,const char *B) {return stringcmp(A,Aend,B,B+strlen(B));};
107inline 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
108#endif
109
47db8997
AL
110APT_MKSTRCMP2(stringcmp,stringcmp);
111APT_MKSTRCMP2(stringcasecmp,stringcasecmp);
0db4a45b 112
b9179170
MV
113// Return the length of a NULL-terminated string array
114size_t strv_length(const char **str_array);
115
116
0db4a45b 117inline const char *DeNull(const char *s) {return (s == 0?"(null)":s);};
6c139d6e 118
93bf083d
AL
119class URI
120{
8f3ba4e8 121 void CopyFrom(const std::string &From);
be4401bf 122
93bf083d
AL
123 public:
124
8f3ba4e8
DK
125 std::string Access;
126 std::string User;
127 std::string Password;
128 std::string Host;
129 std::string Path;
93bf083d
AL
130 unsigned int Port;
131
8f3ba4e8
DK
132 operator std::string();
133 inline void operator =(const std::string &From) {CopyFrom(From);};
be4401bf 134 inline bool empty() {return Access.empty();};
8f3ba4e8
DK
135 static std::string SiteOnly(const std::string &URI);
136 static std::string NoUserPassword(const std::string &URI);
93bf083d 137
8f3ba4e8 138 URI(std::string Path) {CopyFrom(Path);};
be4401bf 139 URI() : Port(0) {};
93bf083d
AL
140};
141
b2e465d6
AL
142struct SubstVar
143{
144 const char *Subst;
8f3ba4e8 145 const std::string *Contents;
b2e465d6 146};
8f3ba4e8
DK
147std::string SubstVar(std::string Str,const struct SubstVar *Vars);
148std::string SubstVar(const std::string &Str,const std::string &Subst,const std::string &Contents);
b2e465d6
AL
149
150struct RxChoiceList
151{
152 void *UserData;
153 const char *Str;
154 bool Hit;
155};
156unsigned long RegexChoice(RxChoiceList *Rxs,const char **ListBegin,
157 const char **ListEnd);
158
6c139d6e 159#endif