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 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464
|
/****************************************************************************
**
** Copyright (C) 2019 The Qt Company Ltd.
** Contact: https://www.qt.io/licensing/
**
** This file is part of the tools applications of the Qt Toolkit.
**
** $QT_BEGIN_LICENSE:GPL-EXCEPT$
** Commercial License Usage
** Licensees holding valid commercial Qt licenses may use this file in
** accordance with the commercial license agreement provided with the
** Software or, alternatively, in accordance with the terms contained in
** a written agreement between you and The Qt Company. For licensing terms
** and conditions see https://www.qt.io/terms-conditions. For further
** information use the contact form at https://www.qt.io/contact-us.
**
** GNU General Public License Usage
** Alternatively, this file may be used under the terms of the GNU
** General Public License version 3 as published by the Free Software
** Foundation with exceptions as appearing in the file LICENSE.GPL3-EXCEPT
** included in the packaging of this file. Please review the following
** information to ensure the GNU General Public License requirements will
** be met: https://www.gnu.org/licenses/gpl-3.0.html.
**
** $QT_END_LICENSE$
**
****************************************************************************/
#include "atom.h"
#include "location.h"
#include "qdocdatabase.h"
#include <QtCore/qdebug.h>
#include <QtCore/qregexp.h>
#include <stdio.h>
QT_BEGIN_NAMESPACE
/*! \class Atom
\brief The Atom class is the fundamental unit for representing
documents internally.
Atoms have a \i type and are completed by a \i string whose
meaning depends on the \i type. For example, the string
\quotation
\i italic text looks nicer than \bold bold text
\endquotation
is represented by the following atoms:
\quotation
(FormattingLeft, ATOM_FORMATTING_ITALIC)
(String, "italic")
(FormattingRight, ATOM_FORMATTING_ITALIC)
(String, " text is more attractive than ")
(FormattingLeft, ATOM_FORMATTING_BOLD)
(String, "bold")
(FormattingRight, ATOM_FORMATTING_BOLD)
(String, " text")
\endquotation
\also Text
*/
/*! \enum Atom::AtomType
\value AnnotatedList
\value AutoLink
\value BaseName
\value BriefLeft
\value BriefRight
\value C
\value CaptionLeft
\value CaptionRight
\value Code
\value CodeBad
\value CodeNew
\value CodeOld
\value CodeQuoteArgument
\value CodeQuoteCommand
\value DivLeft
\value DivRight
\value EndQmlText
\value ExampleFileLink
\value ExampleImageLink
\value FormatElse
\value FormatEndif
\value FormatIf
\value FootnoteLeft
\value FootnoteRight
\value FormattingLeft
\value FormattingRight
\value GeneratedList
\value Image
\value ImageText
\value ImportantNote
\value InlineImage
\value JavaScript
\value EndJavaScript
\value Keyword
\value LineBreak
\value Link
\value LinkNode
\value ListLeft
\value ListItemNumber
\value ListTagLeft
\value ListTagRight
\value ListItemLeft
\value ListItemRight
\value ListRight
\value NavAutoLink
\value NavLink
\value Nop
\value Note
\value ParaLeft
\value ParaRight
\value Qml
\value QmlText
\value QuotationLeft
\value QuotationRight
\value RawString
\value SectionLeft
\value SectionRight
\value SectionHeadingLeft
\value SectionHeadingRight
\value SidebarLeft
\value SidebarRight
\value SinceList
\value SinceTagLeft
\value SinceTagRight
\value String
\value TableLeft
\value TableRight
\value TableHeaderLeft
\value TableHeaderRight
\value TableRowLeft
\value TableRowRight
\value TableItemLeft
\value TableItemRight
\value TableOfContents
\value Target
\value UnhandledFormat
\value UnknownCommand
*/
QString Atom::noError_ = QString();
static const struct
{
const char *english;
int no;
} atms[] = { { "AnnotatedList", Atom::AnnotatedList },
{ "AutoLink", Atom::AutoLink },
{ "BaseName", Atom::BaseName },
{ "br", Atom::BR },
{ "BriefLeft", Atom::BriefLeft },
{ "BriefRight", Atom::BriefRight },
{ "C", Atom::C },
{ "CaptionLeft", Atom::CaptionLeft },
{ "CaptionRight", Atom::CaptionRight },
{ "Code", Atom::Code },
{ "CodeBad", Atom::CodeBad },
{ "CodeNew", Atom::CodeNew },
{ "CodeOld", Atom::CodeOld },
{ "CodeQuoteArgument", Atom::CodeQuoteArgument },
{ "CodeQuoteCommand", Atom::CodeQuoteCommand },
{ "DivLeft", Atom::DivLeft },
{ "DivRight", Atom::DivRight },
{ "EndQmlText", Atom::EndQmlText },
{ "ExampleFileLink", Atom::ExampleFileLink },
{ "ExampleImageLink", Atom::ExampleImageLink },
{ "FootnoteLeft", Atom::FootnoteLeft },
{ "FootnoteRight", Atom::FootnoteRight },
{ "FormatElse", Atom::FormatElse },
{ "FormatEndif", Atom::FormatEndif },
{ "FormatIf", Atom::FormatIf },
{ "FormattingLeft", Atom::FormattingLeft },
{ "FormattingRight", Atom::FormattingRight },
{ "GeneratedList", Atom::GeneratedList },
{ "hr", Atom::HR },
{ "Image", Atom::Image },
{ "ImageText", Atom::ImageText },
{ "ImportantLeft", Atom::ImportantLeft },
{ "ImportantRight", Atom::ImportantRight },
{ "InlineImage", Atom::InlineImage },
{ "JavaScript", Atom::JavaScript },
{ "EndJavaScript", Atom::EndJavaScript },
{ "Keyword", Atom::Keyword },
{ "LegaleseLeft", Atom::LegaleseLeft },
{ "LegaleseRight", Atom::LegaleseRight },
{ "LineBreak", Atom::LineBreak },
{ "Link", Atom::Link },
{ "LinkNode", Atom::LinkNode },
{ "ListLeft", Atom::ListLeft },
{ "ListItemNumber", Atom::ListItemNumber },
{ "ListTagLeft", Atom::ListTagLeft },
{ "ListTagRight", Atom::ListTagRight },
{ "ListItemLeft", Atom::ListItemLeft },
{ "ListItemRight", Atom::ListItemRight },
{ "ListRight", Atom::ListRight },
{ "NavAutoLink", Atom::NavAutoLink },
{ "NavLink", Atom::NavLink },
{ "Nop", Atom::Nop },
{ "NoteLeft", Atom::NoteLeft },
{ "NoteRight", Atom::NoteRight },
{ "ParaLeft", Atom::ParaLeft },
{ "ParaRight", Atom::ParaRight },
{ "Qml", Atom::Qml },
{ "QmlText", Atom::QmlText },
{ "QuotationLeft", Atom::QuotationLeft },
{ "QuotationRight", Atom::QuotationRight },
{ "RawString", Atom::RawString },
{ "SectionLeft", Atom::SectionLeft },
{ "SectionRight", Atom::SectionRight },
{ "SectionHeadingLeft", Atom::SectionHeadingLeft },
{ "SectionHeadingRight", Atom::SectionHeadingRight },
{ "SidebarLeft", Atom::SidebarLeft },
{ "SidebarRight", Atom::SidebarRight },
{ "SinceList", Atom::SinceList },
{ "SinceTagLeft", Atom::SinceTagLeft },
{ "SinceTagRight", Atom::SinceTagRight },
{ "SnippetCommand", Atom::SnippetCommand },
{ "SnippetIdentifier", Atom::SnippetIdentifier },
{ "SnippetLocation", Atom::SnippetLocation },
{ "String", Atom::String },
{ "TableLeft", Atom::TableLeft },
{ "TableRight", Atom::TableRight },
{ "TableHeaderLeft", Atom::TableHeaderLeft },
{ "TableHeaderRight", Atom::TableHeaderRight },
{ "TableRowLeft", Atom::TableRowLeft },
{ "TableRowRight", Atom::TableRowRight },
{ "TableItemLeft", Atom::TableItemLeft },
{ "TableItemRight", Atom::TableItemRight },
{ "TableOfContents", Atom::TableOfContents },
{ "Target", Atom::Target },
{ "UnhandledFormat", Atom::UnhandledFormat },
{ "WarningLeft", Atom::WarningLeft },
{ "WarningRight", Atom::WarningRight },
{ "UnknownCommand", Atom::UnknownCommand },
{ nullptr, 0 } };
/*! \fn Atom::Atom(AtomType type, const QString &string)
Constructs an atom of the specified \a type with the single
parameter \a string and does not put the new atom in a list.
*/
/*! \fn Atom::Atom(AtomType type, const QString &p1, const QString &p2)
Constructs an atom of the specified \a type with the two
parameters \a p1 and \a p2 and does not put the new atom
in a list.
*/
/*! \fn Atom(Atom *previous, AtomType type, const QString &string)
Constructs an atom of the specified \a type with the single
parameter \a string and inserts the new atom into the list
after the \a previous atom.
*/
/*! \fn Atom::Atom(Atom *previous, AtomType type, const QString &p1, const QString &p2)
Constructs an atom of the specified \a type with the two
parameters \a p1 and \a p2 and inserts the new atom into
the list after the \a previous atom.
*/
/*! \fn void Atom::appendChar(QChar ch)
Appends \a ch to the string parameter of this atom.
\also string()
*/
/*! \fn void Atom::appendString(const QString &string)
Appends \a string to the string parameter of this atom.
\also string()
*/
/*! \fn void Atom::chopString()
\also string()
*/
/*! \fn Atom *Atom::next()
Return the next atom in the atom list.
\also type(), string()
*/
/*!
Return the next Atom in the list if it is of AtomType \a t.
Otherwise return 0.
*/
const Atom *Atom::next(AtomType t) const
{
return (next_ && (next_->type() == t)) ? next_ : nullptr;
}
/*!
Return the next Atom in the list if it is of AtomType \a t
and its string part is \a s. Otherwise return 0.
*/
const Atom *Atom::next(AtomType t, const QString &s) const
{
return (next_ && (next_->type() == t) && (next_->string() == s)) ? next_ : nullptr;
}
/*! \fn const Atom *Atom::next() const
Return the next atom in the atom list.
\also type(), string()
*/
/*! \fn AtomType Atom::type() const
Return the type of this atom.
\also string(), next()
*/
/*!
Return the type of this atom as a string. Return "Invalid" if
type() returns an impossible value.
This is only useful for debugging.
\also type()
*/
QString Atom::typeString() const
{
static bool deja = false;
if (!deja) {
int i = 0;
while (atms[i].english != nullptr) {
if (atms[i].no != i)
Location::internalError(
QCoreApplication::translate("QDoc::Atom", "atom %1 missing").arg(i));
++i;
}
deja = true;
}
int i = static_cast<int>(type());
if (i < 0 || i > static_cast<int>(Last))
return QLatin1String("Invalid");
return QLatin1String(atms[i].english);
}
/*! \fn const QString &Atom::string() const
Returns the string parameter that together with the type
characterizes this atom.
\also type(), next()
*/
/*!
Dumps this Atom to stderr in printer friendly form.
*/
void Atom::dump() const
{
QString str = string();
str.replace(QLatin1String("\\"), QLatin1String("\\\\"));
str.replace(QLatin1String("\""), QLatin1String("\\\""));
str.replace(QLatin1String("\n"), QLatin1String("\\n"));
str.replace(QRegExp(QLatin1String("[^\x20-\x7e]")), QLatin1String("?"));
if (!str.isEmpty())
str = QLatin1String(" \"") + str + QLatin1Char('"');
fprintf(stderr, " %-15s%s\n", typeString().toLatin1().data(), str.toLatin1().data());
}
/*!
The only constructor for LinkAtom. It creates an Atom of
type Atom::Link. \a p1 being the link target. \a p2 is the
parameters in square brackets. Normally there is just one
word in the square brackets, but there can be up to three
words separated by spaces. The constructor splits \a p2 on
the space character.
*/
LinkAtom::LinkAtom(const QString &p1, const QString &p2)
: Atom(Atom::Link, p1),
resolved_(false),
genus_(Node::DontCare),
goal_(Node::NoType),
domain_(nullptr),
squareBracketParams_(p2)
{
// nada.
}
/*!
This function resolves the parameters that were enclosed in
square brackets. If the parameters have already been resolved,
it does nothing and returns immediately.
*/
void LinkAtom::resolveSquareBracketParams()
{
if (resolved_)
return;
const QStringList params = squareBracketParams_.toLower().split(QLatin1Char(' '));
for (const auto ¶m : params) {
if (!domain_) {
domain_ = QDocDatabase::qdocDB()->findTree(param);
if (domain_) {
continue;
}
}
if (goal_ == Node::NoType) {
goal_ = Node::goal(param);
if (goal_ != Node::NoType)
continue;
}
if (param == "qml") {
genus_ = Node::QML;
continue;
}
if (param == "cpp") {
genus_ = Node::CPP;
continue;
}
if (param == "doc") {
genus_ = Node::DOC;
continue;
}
error_ = squareBracketParams_;
break;
}
resolved_ = true;
}
/*!
Standard copy constructor of LinkAtom \a t.
*/
LinkAtom::LinkAtom(const LinkAtom &t)
: Atom(Link, t.string()),
resolved_(t.resolved_),
genus_(t.genus_),
goal_(t.goal_),
domain_(t.domain_),
error_(t.error_),
squareBracketParams_(t.squareBracketParams_)
{
// nothing
}
/*!
Special copy constructor of LinkAtom \a t, where
where the new LinkAtom will not be the first one
in the list.
*/
LinkAtom::LinkAtom(Atom *previous, const LinkAtom &t)
: Atom(previous, Link, t.string()),
resolved_(t.resolved_),
genus_(t.genus_),
goal_(t.goal_),
domain_(t.domain_),
error_(t.error_),
squareBracketParams_(t.squareBracketParams_)
{
previous->next_ = this;
}
QT_END_NAMESPACE
|