/usr/include/syndication/tools.h is in kdepimlibs5-dev 4:4.13.0-0ubuntu1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 | /*
* This file is part of the syndication library
*
* Copyright (C) 2006 Frank Osterfeld <osterfeld@kde.org>
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Library General Public
* License as published by the Free Software Foundation; either
* version 2 of the License, or (at your option) any later version.
*
* This library is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Library General Public License for more details.
*
* You should have received a copy of the GNU Library General Public License
* along with this library; see the file COPYING.LIB. If not, write to
* the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
* Boston, MA 02110-1301, USA.
*
*/
#ifndef SYNDICATION_TOOLS_H
#define SYNDICATION_TOOLS_H
#include <syndication/person.h>
#include "ksyndication_export.h"
#include <QtCore/QString>
#include <ctime>
class QByteArray;
class QString;
namespace Syndication {
/** date formats supported by date parsers */
enum DateFormat
{
ISODate, /**< ISO 8601 extended format.
* (date: "2003-12-13",datetime: "2003-12-13T18:30:02.25",
* datetime with timezone: "2003-12-13T18:30:02.25+01:00")
*/
RFCDate /**< RFC 822. (e.g. "Sat, 07 Sep 2002 00:00:01 GMT") */
};
/**
* parses a date string in ISO 8601 extended format.
* (date: "2003-12-13",datetime: "2003-12-13T18:30:02.25",
* datetime with timezone: "2003-12-13T18:30:02.25+01:00")
*
* @param str a string in ISO 8601 format
* @return parsed date in seconds since epoch, 0 if no date could
* be parsed from the string.
*/
//KDE5: uint, not time_t
SYNDICATION_EXPORT
time_t parseISODate(const QString& str);
/**
* parses a date string as defined in RFC 822.
* (Sat, 07 Sep 2002 00:00:01 GMT)
*
* @param str a string in RFC 822 format
* @return parsed date in seconds since epoch, 0 if no date could
* be parsed from the string.
*/
//KDE5: uint, not time_t
SYNDICATION_EXPORT
time_t parseRFCDate(const QString& str);
/**
* parses a date string in ISO (see parseISODate()) or RFC 822 (see
* parseRFCDate()) format.
* It tries both parsers and returns the first valid parsing result found (or 0
* otherwise).
* To speed up parsing, you can give a hint which format you expect.
* The method will try the corresponding parser first then.
*
* @param str a date string
* @param hint the expected format
* @return parsed date in seconds since epoch, 0 if no date could
* be parsed from the string.
*/
//KDE5: uint, not time_t
SYNDICATION_EXPORT
time_t parseDate(const QString& str, DateFormat hint=RFCDate);
/**
* @internal
* returns a string representation of a datetime.
* this is used internally to create debugging output.
*
* @param date the date to convert
* @return string representation of the date, or a null string if
* @c date is 0
*/
//KDE5: uint, not time_t
SYNDICATION_EXPORT
QString dateTimeToString(time_t date);
/**
* resolves entities to respective unicode chars.
*
* @param str a string
*/
SYNDICATION_EXPORT
QString resolveEntities(const QString& str);
/**
* replaces the characters < >, &, ", '
* with &lt; &gt; &amp;, &quot; &apos;.
* @param str the string to escape
*/
SYNDICATION_EXPORT
QString escapeSpecialCharacters(const QString& str);
/**
* replaces newlines ("\n") by <br/>
* @param str string to convert
*/
SYNDICATION_EXPORT
QString convertNewlines(const QString& str);
/**
* converts a plain text string to HTML
*
* @param plainText a string in plain text.
*/
SYNDICATION_EXPORT
QString plainTextToHtml(const QString& plainText);
/**
* converts a HTML string to plain text
*
* @param html string in HTML format
* @return stripped text
*/
SYNDICATION_EXPORT
QString htmlToPlainText(const QString& html);
/**
* guesses whether a string contains plain text or HTML
*
* @param str the string in unknown format
* @return @c true if the heuristic thinks it's HTML, @c false
* if thinks it is plain text
*/
SYNDICATION_EXPORT
bool isHtml(const QString& str);
/**
* guesses whether a string contains (HTML) markup or not. This
* implements not an exact check for valid HTML markup, but a
* simple (and relatively fast) heuristic.
*
* @param str the string that might or might not contain markup
* @return @c true if the heuristic thinks it contains markup, @c false
* if thinks it is markup-free plain text
*/
SYNDICATION_EXPORT
bool stringContainsMarkup(const QString& str);
/**
* Ensures HTML formatting for a string.
* guesses via isHtml() if @c str contains HTML or plain text, and returns
* plainTextToHtml(str) if it thinks it is plain text, or the unmodified @c str
* otherwise.
*
* @param str a string with unknown content
* @return string as HTML (as long as the heuristics work)
*/
SYNDICATION_EXPORT
QString normalize(const QString& str);
/**
* normalizes a string based on feed-wide properties of tag content.
* It is based on the assumption that all items in a feed encode their
* title/description content in the same way (CDATA or not, plain text
* vs. HTML). isCDATA and containsMarkup are determined once by the feed,
* and then passed to this method.
*
* The returned string contains HTML, with special characters <, >,
* &, ", and ' escaped, and all other entities resolved.
* Whitespace is collapsed, relevant whitespace is replaced by respective
* HTML tags (<br/>).
*
* @param str a string
* @param isCDATA whether the feed uses CDATA for the tag @c str was read from
* @param containsMarkup whether the feed uses HTML markup in the
* tag @c str was read from.
* @return string as HTML (as long as the heuristics work)
*/
SYNDICATION_EXPORT
QString normalize(const QString& str, bool isCDATA, bool containsMarkup);
/**
* Parses a person object from a string by identifying name and email address
* in the string. Currently detected variants are:
* "foo@bar.com", "Foo", "Foo <foo@bar.com>", "foo@bar.com (Foo)".
*
* @param str the string to parse the person from.
* @return a Person object containing the parsed information.
*/
SYNDICATION_EXPORT
PersonPtr personFromString(const QString& str);
/**
* @internal
* calculates a hash value for a string
*/
unsigned int calcHash(const QString& str);
/**
* @internal
* calculates a hash value for a byte array
*/
unsigned int calcHash(const QByteArray& array);
/**
* @internal
* calculates a md5 checksum for a string
*/
QString calcMD5Sum(const QString& str);
//@cond PRIVATE
/**
* @internal
* used internally to represent element types
*/
struct ElementType
{
ElementType(const QString& localnamep,
const QString& nsp=QString()); // implicit
bool operator==(const ElementType& other) const;
QString ns;
QString localname;
};
//@endcond
} // namespace Syndication
#endif // SYNDICATION_TOOLS_H
|