]> git.saurik.com Git - apt.git/blame - apt-pkg/contrib/strutl.h
G++3 fixes from Randolph
[apt.git] / apt-pkg / contrib / strutl.h
CommitLineData
6c139d6e
AL
1// -*- mode: cpp; mode: fold -*-
2// Description /*{{{*/
c24972cb 3// $Id: strutl.h,v 1.19 2001/05/27 05:55: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
492f957a 19#ifdef __GNUG__
cdcc6d34 20#pragma interface "apt-pkg/strutl.h"
492f957a
AL
21#endif
22
6c139d6e
AL
23#include <stdlib.h>
24#include <string>
0a8a80e5 25#include <vector>
0db4a45b 26#include <iostream>
492f957a 27#include <time.h>
6c139d6e 28
0db4a45b
AL
29using std::string;
30using std::vector;
31using std::ostream;
32
b2e465d6
AL
33#ifdef __GNUG__
34// Methods have a hidden this parameter that is visible to this attribute
35#define APT_FORMAT2 __attribute__ ((format (printf, 2, 3)))
36#else
37#define APT_FORMAT2
38#endif
39
6c139d6e
AL
40char *_strstrip(char *String);
41char *_strtabexpand(char *String,size_t Len);
42bool ParseQuoteWord(const char *&String,string &Res);
b2e465d6 43bool ParseCWord(const char *&String,string &Res);
6c139d6e 44string QuoteString(string Str,const char *Bad);
1bc849af 45string DeQuoteString(string Str);
6c139d6e
AL
46string SizeToStr(double Bytes);
47string TimeToStr(unsigned long Sec);
6c139d6e 48string Base64Encode(string Str);
ad00ae81 49string URItoFileName(string URI);
0a8a80e5 50string TimeRFC1123(time_t Date);
24231681 51bool StrToTime(string Val,time_t &Result);
0a8a80e5
AL
52string LookupTag(string Message,const char *Tag,const char *Default = 0);
53int StringToBool(string Text,int Default = -1);
54bool ReadMessages(int Fd, vector<string> &List);
ddc1d8d0 55bool StrToNum(const char *Str,unsigned long &Res,unsigned Len,unsigned Base = 0);
0db4a45b 56bool Hex2Num(string Str,unsigned char *Num,unsigned int Length);
b2e465d6
AL
57bool TokSplitString(char Tok,char *Input,char **List,
58 unsigned long ListMax);
59void ioprintf(ostream &out,const char *format,...) APT_FORMAT2;
f8081133 60bool CheckDomainList(string Host,string List);
6c139d6e 61
c24972cb
AL
62#define APT_MKSTRCMP(name,func) \
63inline int name(const char *A,const char *AEnd,const char *B) {return func(A,AEnd,B,B+strlen(B));}; \
64inline int name(string A,const char *B) {return func(A.c_str(),A.c_str()+A.length(),B,B+strlen(B));}; \
65inline int name(string A,string B) {return func(A.c_str(),A.c_str()+A.length(),B.c_str(),B.c_str()+B.length());}; \
66inline int name(string A,const char *B,const char *BEnd) {return func(A.c_str(),A.c_str()+A.length(),B,BEnd);};
0db4a45b 67
c24972cb 68int stringcmp(const char *A,const char *AEnd,const char *B,const char *BEnd);
6c139d6e 69int stringcasecmp(const char *A,const char *AEnd,const char *B,const char *BEnd);
c24972cb
AL
70
71APT_MKSTRCMP(stringcmp,stringcmp);
72APT_MKSTRCMP(stringcasecmp,stringcasecmp);
0db4a45b
AL
73
74inline const char *DeNull(const char *s) {return (s == 0?"(null)":s);};
6c139d6e 75
93bf083d
AL
76class URI
77{
be4401bf
AL
78 void CopyFrom(string From);
79
93bf083d
AL
80 public:
81
82 string Access;
83 string User;
84 string Password;
85 string Host;
86 string Path;
87 unsigned int Port;
88
492f957a 89 operator string();
e3c43919 90 inline void operator =(string From) {CopyFrom(From);};
be4401bf 91 inline bool empty() {return Access.empty();};
b2e465d6 92 static string SiteOnly(string URI);
93bf083d 93
be4401bf
AL
94 URI(string Path) {CopyFrom(Path);};
95 URI() : Port(0) {};
93bf083d
AL
96};
97
b2e465d6
AL
98struct SubstVar
99{
100 const char *Subst;
101 const string *Contents;
102};
103string SubstVar(string Str,const struct SubstVar *Vars);
104string SubstVar(string Str,string Subst,string Contents);
105
106struct RxChoiceList
107{
108 void *UserData;
109 const char *Str;
110 bool Hit;
111};
112unsigned long RegexChoice(RxChoiceList *Rxs,const char **ListBegin,
113 const char **ListEnd);
114
115#undef APT_FORMAT2
116
6c139d6e 117#endif