/**************************************************************************
**
** This file is part of Qt Creator
**
** Copyright (c) 2011 Nokia Corporation and/or its subsidiary(-ies).
**
** Contact: Nokia Corporation (qt-info@nokia.com)
**
** No Commercial Usage
**
** This file contains pre-release code and may not be distributed.
** You may use this file in accordance with the terms and conditions
** contained in the Technology Preview License Agreement accompanying
** this package.
**
** GNU Lesser General Public License Usage
**
** Alternatively, this file may be used under the terms of the GNU Lesser
** General Public License version 2.1 as published by the Free Software
** Foundation and appearing in the file LICENSE.LGPL included in the
** packaging of this file. Please review the following information to
** ensure the GNU Lesser General Public License version 2.1 requirements
** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html.
**
** In addition, as a special exception, Nokia gives you certain additional
** rights. These rights are described in the Nokia Qt LGPL Exception
** version 1.1, included in the file LGPL_EXCEPTION.txt in this package.
**
** If you have questions regarding the use of this file, please contact
** Nokia at qt-info@nokia.com.
**
**************************************************************************/
#include "htmldocextractor.h"
#include
#include
#include
#include
using namespace Utils;
namespace {
QRegExp createMinimalExp(const QString &pattern) {
QRegExp exp(pattern);
exp.setMinimal(true);
return exp;
}
}
HtmlDocExtractor::HtmlDocExtractor() :
m_formatContents(true),
m_mode(FirstParagraph)
{}
void HtmlDocExtractor::setMode(Mode mode)
{ m_mode = mode; }
void HtmlDocExtractor::applyFormatting(const bool format)
{ m_formatContents = format; }
QString HtmlDocExtractor::getClassOrNamespaceBrief(const QString &html, const QString &mark) const
{
QString contents = getContentsByMarks(html, mark + QLatin1String("-brief"), mark);
if (!contents.isEmpty() && m_formatContents)
contents.remove(QLatin1String("More..."));
processOutput(&contents);
return contents;
}
QString HtmlDocExtractor::getClassOrNamespaceDescription(const QString &html,
const QString &mark) const
{
if (m_mode == FirstParagraph)
return getClassOrNamespaceBrief(html, mark);
QString contents = getContentsByMarks(html, mark + QLatin1String("-description"), mark);
if (!contents.isEmpty() && m_formatContents)
contents.remove(QLatin1String("Detailed Description"));
processOutput(&contents);
return contents;
}
QString HtmlDocExtractor::getEnumDescription(const QString &html, const QString &mark) const
{
return getClassOrNamespaceMemberDescription(html, mark, mark);
}
QString HtmlDocExtractor::getTypedefDescription(const QString &html, const QString &mark) const
{
return getClassOrNamespaceMemberDescription(html, mark, mark);
}
QString HtmlDocExtractor::getMacroDescription(const QString &html,
const QString &mark) const
{
return getClassOrNamespaceMemberDescription(html, mark, mark);
}
QString HtmlDocExtractor::getFunctionDescription(const QString &html,
const QString &mark,
const bool mainOverload) const
{
QString cleanMark = mark;
QString startMark = mark;
const int parenthesis = mark.indexOf(QLatin1Char('('));
if (parenthesis != -1) {
startMark = mark.left(parenthesis);
cleanMark = startMark;
if (mainOverload) {
startMark.append(QLatin1String("[overload1]"));
} else {
QString complement = mark.right(mark.length() - parenthesis);
complement.remove(QRegExp(QLatin1String("[\\(\\), ]")));
startMark.append(complement);
}
}
QString contents = getClassOrNamespaceMemberDescription(html, startMark, cleanMark);
if (contents.isEmpty()) {
// Maybe this is a property function, which is documented differently. Besides
// setX/isX/hasX there are other (not so usual) names for them. A few examples of those:
// - toPlainText / Prop. plainText from QPlainTextEdit.
// - resize / Prop. size from QWidget.
// - move / Prop. pos from QWidget (nothing similar in the names in this case).
// So I try to find the link to this property in the list of properties, extract its
// anchor and then follow by the name found.
const QString &pattern =
QString(QLatin1String("%1")).arg(cleanMark);
QRegExp exp = createMinimalExp(pattern);
if (exp.indexIn(html) != -1) {
const QString &prop = exp.cap(1);
contents = getClassOrNamespaceMemberDescription(html,
prop + QLatin1String("-prop"),
prop);
}
}
return contents;
}
QString HtmlDocExtractor::getQMLItemDescription(const QString &html, const QString &mark) const
{
return getClassOrNamespaceDescription(html, mark);
}
QString HtmlDocExtractor::getClassOrNamespaceMemberDescription(const QString &html,
const QString &startMark,
const QString &endMark) const
{
QString contents = getContentsByMarks(html, startMark, endMark);
processOutput(&contents);
return contents;
}
QString HtmlDocExtractor::getContentsByMarks(const QString &html,
QString startMark,
QString endMark) const
{
startMark.prepend(QLatin1String("$$$"));
endMark.prepend(QLatin1String(""), start);
if (start != -1) {
int end = html.indexOf(endMark, start);
if (end != -1) {
start += 3;
contents = html.mid(start, end - start);
}
}
}
return contents;
}
void HtmlDocExtractor::processOutput(QString *html) const
{
if (html->isEmpty())
return;
if (m_mode == FirstParagraph) {
// Try to get the entire first paragraph, but if one is not found or if its opening
// tag is not in the very beginning (using an empirical value as the limit) the html
// is cleared to avoid too much content.
int index = html->indexOf(QLatin1String(""));
if (index != -1 && index < 400) {
index = html->indexOf(QLatin1String("
"), index + 2);
if (index != -1) {
if (html->at(index - 1) == QLatin1Char('.')) {
html->truncate(index + 4);
} else {
// Paragraphs similar to this. Example:
index = html->lastIndexOf(QLatin1Char('.'), index);
if (index != -1) {
html->truncate(index);
html->append(QLatin1String(".
"));
}
}
} else {
html->clear();
}
} else {
html->clear();
}
}
if (!html->isEmpty() && m_formatContents) {
stripBold(html);
replaceNonStyledHeadingsForBold(html);
replaceTablesForSimpleLines(html);
replaceListsForSimpleLines(html);
stripLinks(html);
stripHorizontalLines(html);
stripDivs(html);
stripTagsStyles(html);
stripHeadings(html);
stripImagens(html);
stripEmptyParagraphs(html);
}
}
void HtmlDocExtractor::stripAllHtml(QString *html)
{
html->remove(createMinimalExp(QLatin1String("<.*>")));
}
void HtmlDocExtractor::stripHeadings(QString *html)
{
html->remove(createMinimalExp(QLatin1String("|")));
}
void HtmlDocExtractor::stripLinks(QString *html)
{
html->remove(createMinimalExp(QLatin1String("|")));
}
void HtmlDocExtractor::stripHorizontalLines(QString *html)
{
html->remove(createMinimalExp(QLatin1String("
")));
}
void HtmlDocExtractor::stripDivs(QString *html)
{
html->remove(createMinimalExp(QLatin1String("|
|")));
}
void HtmlDocExtractor::stripTagsStyles(QString *html)
{
const QRegExp &exp = createMinimalExp(QLatin1String("<(.*\\s+)class=\".*\">"));
html->replace(exp, QLatin1String("<\\1>"));
}
void HtmlDocExtractor::stripTeletypes(QString *html)
{
html->remove(QLatin1String("
"));
html->remove(QLatin1String(""));
}
void HtmlDocExtractor::stripImagens(QString *html)
{
html->remove(createMinimalExp(QLatin1String("
")));
}
void HtmlDocExtractor::stripBold(QString *html)
{
html->remove(QLatin1String(""));
html->remove(QLatin1String(""));
}
void HtmlDocExtractor::stripEmptyParagraphs(QString *html)
{
html->remove(QLatin1String(""));
}
void HtmlDocExtractor::replaceNonStyledHeadingsForBold(QString *html)
{
const QRegExp &hStart = createMinimalExp(QLatin1String(""));
const QRegExp &hEnd = createMinimalExp(QLatin1String(""));
html->replace(hStart, QLatin1String(""));
html->replace(hEnd, QLatin1String("
"));
}
void HtmlDocExtractor::replaceTablesForSimpleLines(QString *html)
{
html->replace(createMinimalExp(QLatin1String("(?:)?
")), QLatin1String(""));
html->replace(QLatin1String(""), QLatin1String("
"));
html->remove(createMinimalExp(QLatin1String("")));
html->remove(QLatin1String(""));
html->remove(createMinimalExp(QLatin1String("")));
html->remove(QLatin1String(""));
html->remove(createMinimalExp(QLatin1String(".*")));
html->replace(QLatin1String(" | remove(createMinimalExp(QLatin1String(" | ")));
html->remove(createMinimalExp(QLatin1String("
")));
html->remove(createMinimalExp(QLatin1String("(?:)?")));
html->replace(createMinimalExp(QLatin1String("")),
QLatin1String(" "));
html->replace(QLatin1String(""), QLatin1String("
"));
}
void HtmlDocExtractor::replaceListsForSimpleLines(QString *html)
{
html->remove(createMinimalExp(QLatin1String("<(?:ul|ol).*>")));
html->remove(createMinimalExp(QLatin1String("(?:ul|ol)>")));
html->replace(QLatin1String(""), QLatin1String(" "));
html->replace(QLatin1String(""), QLatin1String("
"));
}