/* kmime_util.h KMime, the KDE internet mail/usenet news message library. Copyright (c) 2001 the KMime authors. See file AUTHORS for details This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, US */ #ifndef __KMIME_UTIL_H__ #define __KMIME_UTIL_H__ #include "tqdatetime.h" #include "tqstring.h" #include "tqcstring.h" #include "tqvaluelist.h" #include "time.h" #include typedef TQValueList QCStringList; namespace KMime { /** Consult the charset cache. Only used for reducing mem usage by keeping strings in a common repository.*/ extern const char* cachedCharset(const TQCString &name) KDE_EXPORT; /** Consult the language cache. Only used for reducing mem usage by keeping strings in a common repository.*/ extern const char* cachedLanguage(const TQCString &name) KDE_EXPORT; /** checks whether @p s contains any non-us-ascii characters */ extern bool isUsAscii(const TQString &s) KDE_EXPORT; inline bool isOfSet(const uchar map[16], unsigned char ch) { Q_ASSERT( ch < 128 ); return ( map[ ch/8 ] & 0x80 >> ch%8 ); } extern const uchar specialsMap[16]; extern const uchar tSpecialsMap[16]; extern const uchar aTextMap[16]; extern const uchar tTextMap[16]; extern const uchar eTextMap[16]; inline bool isSpecial(char ch) { return isOfSet( specialsMap, ch ); } inline bool isTSpecial(char ch) { return isOfSet( tSpecialsMap, ch ); } inline bool isAText(char ch) { return isOfSet( aTextMap, ch ); } inline bool isTText(char ch) { return isOfSet( tTextMap, ch ); } inline bool isEText(char ch) { return isOfSet( eTextMap, ch ); } /** Decode string @p src according to RFC2047 (ie. the =?charset?[qb]?encoded?= construct). @param src source string. @param usedCS the detected charset is returned here @param defaultCS the charset to use in case the detected one isn't known to us. @param forceCS force the use of the default charset. @return the decoded string. */ extern TQString decodeRFC2047String(const TQCString &src, const char **usedCS, const TQCString &defaultCS, bool forceCS) KDE_EXPORT; /** Decode string @p src according to RFC2047 (ie. the =?charset?[qb]?encoded?= construct). @param src source string. @return the decoded string. */ extern TQString decodeRFC2047String(const TQCString &src) KDE_EXPORT; /** Encode string @p src according to RFC2047 using charset @p charset. @param src source string. @param charset charset to use. @param addressheader if this flag is true, all special chars like <,>,[,],... will be encoded, too. @param allow8BitHeaders if this flag is true, 8Bit headers are allowed. @return the encoded string. */ extern TQCString encodeRFC2047String(const TQString &src, const char *charset, bool addressHeader=false, bool allow8bitHeaders=false) KDE_EXPORT; /** Uses current time, pid and random numbers to construct a string that aims to be unique on a per-host basis (ie. for the local part of a message-id or for multipart boundaries. @return the unique string. @see multiPartBoundary */ extern TQCString uniqueString() KDE_EXPORT; /** Constructs a random string (sans leading/trailing "--") that can be used as a multipart delimiter (ie. as @p boundary parameter to a multipart/... content-type). @return the randomized string. @see uniqueString */ extern TQCString multiPartBoundary() KDE_EXPORT; /** Tries to extract the header with name @p name from the string @p src, unfolding it if necessary. @param src the source string. @param name the name of the header to search for. @return the first instance of the header @p name in @p src or a null TQCString if no such header was found. */ extern TQCString extractHeader(const TQCString &src, const char *name) KDE_EXPORT; /** Converts all occurrences of "\r\n" (CRLF) in @p s to "\n" (LF). This function is expensive and should be used only if the mail will be stored locally. All decode functions can cope with both line endings. @param s source string containing CRLF's @return the string with CRLF's substitued for LF's @see CRLFtoLF(const char*) LFtoCRLF */ extern TQCString CRLFtoLF(const TQCString &s) KDE_EXPORT; /** Converts all occurrences of "\r\n" (CRLF) in @p s to "\n" (LF). This function is expensive and should be used only if the mail will be stored locally. All decode functions can cope with both line endings. @param s source string containing CRLF's @return the string with CRLF's substitued for LF's @see CRLFtoLF(const TQCString&) LFtoCRLF */ extern TQCString CRLFtoLF(const char *s) KDE_EXPORT; /** Converts all occurrences of "\n" (LF) in @p s to "\r\n" (CRLF). This function is expensive and should be used only if the mail will be transmitted as an RFC822 message later. All decode functions can cope with and all encode functions can optionally produce both line endings, which is much faster. @param s source string containing CRLF's @return the string with CRLF's substitued for LF's @see CRLFtoLF(const TQCString&) LFtoCRLF */ extern TQCString LFtoCRLF(const TQCString &s) KDE_EXPORT; /** Removes quote (DQUOTE) characters and decodes "quoted-pairs" (ie. backslash-escaped characters) @param str the string to work on. @see addQuotes */ KDE_EXPORT extern void removeQuots(TQCString &str); /** Removes quote (DQUOTE) characters and decodes "quoted-pairs" (ie. backslash-escaped characters) @param str the string to work on. @see addQuotes */ KDE_EXPORT extern void removeQuots(TQString &str); /** Converts the given string into a quoted-string if the string contains any special characters (ie. one of ()<>@,.;:[]=\"). @param str us-ascii string to work on. @param forceQuotes if @p true, always add quote characters. */ KDE_EXPORT extern void addQuotes(TQCString &str, bool forceQuotes); /** * @short class abstracting date formatting * * DateFormatter deals with different kinds of date * display formats. The formats supported by the class include: * * * */ class KDE_EXPORT DateFormatter { public: enum FormatType { CTime, //< ctime "Sun Mar 31 02:08:35 2002" Localized, //< localized "2002-03-31 02:08" Fancy, //< fancy "Today 02:08:35" Iso, //< iso "2002-03-31 02:08:35" Custom //< custom "whatever you like" }; /** * constructor * @param fType default format used by the class */ DateFormatter(FormatType fType = DateFormatter::Fancy); ~DateFormatter(); /** * returns the currently set format */ FormatType getFormat() const; /** * sets the currently used format */ void setFormat(FormatType t); /** * returns formatted date string in a currently * set format. * @param otime time to format * @param lang used only by the Localized format, sets the used language * @param shortFormat used only by the Localized format, is passed to TDELocale::formatDateTime * @param includeSecs used only by the Localized format, is passed to TDELocale::formatDateTime */ TQString dateString(time_t otime, const TQString& lang = TQString(), bool shortFormat = true, bool includeSecs=false) const; /** * overloaded, does exactly what #dateString does (it's slower) */ TQString dateString(const TQDateTime& dtime, const TQString& lang = TQString(), bool shortFormat = true, bool includeSecs=false) const; /** * makes the class use the custom format for * date to string conversions. * Method accepts the same arguments * as TQDateTime::toString method and adds * "Z" expression which is substituted with the * RFC-822 style numeric timezone (-0500) * @param format the custom format */ void setCustomFormat(const TQString& format); TQString getCustomFormat() const; /** * returns rfc2822 formatted string * @param otime time to use for formatting */ TQCString rfc2822(time_t otime) const; /** * resets the internal clock */ void reset(); //statics /** convenience function dateString * @param t specifies the FormatType to use * @param time time to format * @param data is either the format when FormatType is Custom, or language * when FormatType is Localized * @param shortFormat used only by the Localized format, is passed to TDELocale::formatDateTime * @param includeSecs used only by the Localized format, is passed to TDELocale::formatDateTime */ static TQString formatDate( DateFormatter::FormatType t, time_t time, const TQString& data = TQString(), bool shortFormat = true, bool includeSecs=false); /** convenience function, same as #formatDate * but returns the current time formatted * @param t specifies the FormatType to use * @param data is either the format when FormatType is Custom, or language * when FormatType is Localized * @param shortFormat used only by the Localized format, is passed to TDELocale::formatDateTime * @param includeSecs used only by the Localized format, is passed to TDELocale::formatDateTime */ static TQString formatCurrentDate( DateFormatter::FormatType t, const TQString& data = TQString(), bool shortFormat = true, bool includeSecs=false); /** convenience function, same as #rfc2822 */ static TQCString rfc2822FormatDate( time_t time ); static bool isDaylight(); protected: /** * returns fancy formatted date string * @param otime time to format * @internal */ TQString fancy(time_t otime) const ; /** * returns localized formatted date string * @param otime time to format * @param shortFormat * @param includeSecs * @param localeLanguage language used for formatting * @internal */ TQString localized(time_t otime, bool shortFormat = true, bool includeSecs = false, const TQString& localeLanguage=TQString() ) const; /** * returns string as formatted with ctime function * @internal */ TQString cTime(time_t otime) const; /** * returns a string in the "%Y-%m-%d %H:%M:%S" format * @internal */ TQString isoDate(time_t otime) const; /** * returns date formatted with the earlier * given custom format * @param t time used for formatting * @internal */ TQString custom(time_t t) const; /** * returns a string identifying the timezone (eg."-0500") * @internal */ TQCString zone(time_t otime) const; time_t qdateToTimeT(const TQDateTime& dt) const; private: FormatType mFormat; mutable time_t mCurrentTime; mutable TQDateTime mDate; TQString mCustomFormat; static int mDaylight; }; } // namespace KMime #endif /* __KMIME_UTIL_H__ */