1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980 |
- // -*- mode: cpp; mode: fold -*-
- // Description /*{{{*/
- // $Id: strutl.h,v 1.2 1999/10/24 06:53:12 jgg Exp $
- /* ######################################################################
- String Util - These are some usefull string functions
-
- _strstrip is a function to remove whitespace from the front and end
- of a string.
-
- This source is placed in the Public Domain, do with it what you will
- It was originally written by Jason Gunthorpe <jgg@gpu.srv.ualberta.ca>
-
- ##################################################################### */
- /*}}}*/
- #ifndef STRUTL_H
- #define STRUTL_H
- #ifdef __GNUG__
- #pragma interface "dsync/strutl.h"
- #endif
- #include <stdlib.h>
- #include <string>
- #include <vector>
- #include <time.h>
- #include <string.h>
- using namespace std;
- char *_strstrip(char *String);
- char *_strtabexpand(char *String,size_t Len);
- bool ParseQuoteWord(const char *&String,string &Res);
- bool ParseCWord(const char *String,string &Res);
- string QuoteString(string Str,const char *Bad);
- string DeQuoteString(string Str);
- string SizeToStr(double Bytes);
- string TimeToStr(unsigned long Sec);
- string SubstVar(string Str,string Subst,string Contents);
- string Base64Encode(string Str);
- string URItoFileName(string URI);
- string TimeRFC1123(time_t Date);
- bool StrToTime(string Val,time_t &Result);
- string LookupTag(string Message,const char *Tag,const char *Default = 0);
- int StringToBool(string Text,int Default = -1);
- bool ReadMessages(int Fd, vector<string> &List);
- bool StrToNum(const char *Str,unsigned long &Res,unsigned Len,unsigned Base = 0);
- bool Hex2Num(const char *Start,const char *End,unsigned char *Num,
- unsigned int Length);
- int stringcmp(const char *A,const char *AEnd,const char *B,const char *BEnd);
- inline int stringcmp(const char *A,const char *AEnd,const char *B) {return stringcmp(A,AEnd,B,B+strlen(B));};
- inline int stringcmp(string A,const char *B) {return stringcmp(A.c_str(),A.c_str()+strlen(A.c_str()),B,B+strlen(B));};
- int stringcasecmp(const char *A,const char *AEnd,const char *B,const char *BEnd);
- inline int stringcasecmp(const char *A,const char *AEnd,const char *B) {return stringcasecmp(A,AEnd,B,B+strlen(B));};
- inline int stringcasecmp(string A,const char *B) {return stringcasecmp(A.c_str(),A.c_str()+strlen(A.c_str()),B,B+strlen(B));};
- class URI
- {
- void CopyFrom(string From);
-
- public:
-
- string Access;
- string User;
- string Password;
- string Host;
- string Path;
- unsigned int Port;
-
- operator string();
- inline void operator =(string From) {CopyFrom(From);};
- inline bool empty() {return Access.empty();};
-
- URI(string Path) {CopyFrom(Path);};
- URI() : Port(0) {};
- };
- #endif
|