Doxygen
Loading...
Searching...
No Matches
DocHtmlRow Class Referencefinal

Node representing a HTML table row. More...

#include <src/docnode.h>

Inheritance diagram for DocHtmlRow:
Collaboration diagram for DocHtmlRow:

Public Member Functions

 DocHtmlRow (DocParser *parser, DocNodeVariant *parent, const HtmlAttribList &attribs)
size_t numCells () const
const HtmlAttribListattribs () const
Token parse ()
Token parseXml (bool header)
bool isHeading () const
void setVisibleCells (uint32_t n)
uint32_t visibleCells () const
uint32_t rowIndex () const
Public Member Functions inherited from DocCompoundNode
 DocCompoundNode (DocParser *parser, DocNodeVariant *parent)
DocNodeListchildren ()
const DocNodeListchildren () const
Public Member Functions inherited from DocNode
 DocNode (DocParser *parser, DocNodeVariant *parent)
 ~DocNode ()=default
DocNodeVariantparent ()
const DocNodeVariantparent () const
DocNodeVariantthisVariant ()
const DocNodeVariantthisVariant () const
void setThisVariant (DocNodeVariant *thisVariant)
DocParserparser ()
const DocParserparser () const
void setParent (DocNodeVariant *parent)
bool isPreformatted () const

Private Member Functions

void setRowIndex (uint32_t idx)

Private Attributes

HtmlAttribList m_attribs
uint32_t m_visibleCells = 0
uint32_t m_rowIdx = static_cast<uint32_t>(-1)

Friends

class DocHtmlTable

Additional Inherited Members

Protected Types inherited from DocNode
enum  RefType {
  Unknown , Anchor , Section , Table ,
  Requirement
}
Protected Member Functions inherited from DocNode
void setInsidePreformatted (bool p)

Detailed Description

Node representing a HTML table row.

Definition at line 1250 of file docnode.h.

Constructor & Destructor Documentation

◆ DocHtmlRow()

DocHtmlRow::DocHtmlRow ( DocParser * parser,
DocNodeVariant * parent,
const HtmlAttribList & attribs )
inline

Definition at line 1254 of file docnode.h.

DocCompoundNode(DocParser *parser, DocNodeVariant *parent)
Definition docnode.h:141
HtmlAttribList m_attribs
Definition docnode.h:1267
const HtmlAttribList & attribs() const
Definition docnode.h:1257
DocParser * parser()
Definition docnode.h:97
DocNodeVariant * parent()
Definition docnode.h:89

References attribs(), DocCompoundNode::DocCompoundNode(), m_attribs, DocNode::parent(), and DocNode::parser().

Member Function Documentation

◆ attribs()

const HtmlAttribList & DocHtmlRow::attribs ( ) const
inline

Definition at line 1257 of file docnode.h.

1257{ return m_attribs; }

References m_attribs.

Referenced by DocHtmlRow(), DocbookDocVisitor::operator()(), and HtmlDocVisitor::operator()().

◆ isHeading()

bool DocHtmlRow::isHeading ( ) const

Definition at line 2086 of file docnode.cpp.

2087{ // a row is a table heading if all cells are marked as such
2088 bool heading=true;
2089 for (const auto &n : children())
2090 {
2091 const DocHtmlCell *cell = std::get_if<DocHtmlCell>(&n);
2092 if (cell && !cell->isHeading())
2093 {
2094 heading = false;
2095 break;
2096 }
2097 }
2098 return !children().empty() && heading;
2099}
DocNodeList & children()
Definition docnode.h:143
bool isHeading() const
Definition docnode.h:1205
bool empty() const
checks whether the container is empty
Definition growvector.h:140

References DocCompoundNode::children(), GrowVector< T >::empty(), and DocHtmlCell::isHeading().

Referenced by DocHtmlTable::numberHeaderRows(), DocbookDocVisitor::operator()(), RTFDocVisitor::operator()(), parse(), and parseXml().

◆ numCells()

size_t DocHtmlRow::numCells ( ) const
inline

Definition at line 1256 of file docnode.h.

1256{ return children().size(); }
size_t size() const
returns the number of elements
Definition growvector.h:93

References DocCompoundNode::children(), and GrowVector< T >::size().

Referenced by RTFDocVisitor::operator()().

◆ parse()

Token DocHtmlRow::parse ( )

Definition at line 2161 of file docnode.cpp.

2162{
2163 AUTO_TRACE();
2164 Token retval = Token::make_RetVal_OK();
2165 auto ns = AutoNodeStack(parser(),thisVariant());
2166
2167 bool isHeading=false;
2168 bool isFirst=true;
2169 DocHtmlCell *cell=nullptr;
2170
2171 Token tok = skipSpacesForTable(parser());
2172 // should find a html tag now
2173 if (tok.is(TokenRetval::TK_HTMLTAG))
2174 {
2175 HtmlTagType tagId=Mappers::htmlTagMapper->map(parser()->context.token->name);
2176 if (tagId==HtmlTagType::HTML_TD && !parser()->context.token->endTag) // found <td> tag
2177 {
2178 }
2179 else if (tagId==HtmlTagType::HTML_TH && !parser()->context.token->endTag) // found <th> tag
2180 {
2181 isHeading=true;
2182 }
2183 else // found some other tag
2184 {
2185 warn_doc_error(parser()->context.fileName,parser()->tokenizer.getLineNr(),"expected <td> or <th> tag but "
2186 "found <{}{}> instead!",parser()->context.token->endTag ? "/" : "", parser()->context.token->name);
2187 parser()->tokenizer.pushBackHtmlTag(parser()->context.token->name);
2188 goto endrow;
2189 }
2190 }
2191 else if (tok.is_any_of(TokenRetval::TK_NONE,TokenRetval::TK_EOF)) // premature end of comment
2192 {
2193 warn_doc_error(parser()->context.fileName,parser()->tokenizer.getLineNr(),"unexpected end of comment while looking"
2194 " for a html description title");
2195 goto endrow;
2196 }
2197 else // token other than html token
2198 {
2199 warn_doc_error(parser()->context.fileName,parser()->tokenizer.getLineNr(),"expected <td> or <th> tag but found {} token instead!",
2200 tok.to_string());
2201 goto endrow;
2202 }
2203
2204 // parse one or more cells
2205 do
2206 {
2207 children().append<DocHtmlCell>(parser(),thisVariant(),
2209 isHeading);
2210 cell = children().get_last<DocHtmlCell>();
2211 cell->markFirst(isFirst);
2212 isFirst=false;
2213 retval=cell->parse();
2214 isHeading = retval.is(TokenRetval::RetVal_TableHCell);
2215 //printf("DocHtmlRow:retval=%s\n",retval.to_string());
2216 if (retval.is(TokenRetval::RetVal_EndTableCell))
2217 {
2218 // get next token
2219 retval = skipSpacesForTable(parser());
2220 //printf("DocHtmlRow:retval= next=%s name=%s endTag=%d\n",retval.to_string(),qPrint(parser()->context.token->name),parser()->context.token->endTag);
2221 HtmlTagType tagId=Mappers::htmlTagMapper->map(parser()->context.token->name);
2222 if (tok.is(TokenRetval::TK_HTMLTAG))
2223 {
2224 if ((tagId==HtmlTagType::HTML_TD || tagId==HtmlTagType::HTML_TH) &&
2225 !parser()->context.token->endTag) // found new <td> or <td> tag
2226 {
2227 retval = Token::make_RetVal_TableCell();
2229 }
2230 else if (tagId==HtmlTagType::HTML_TR)
2231 {
2232 if (parser()->context.token->endTag) // found </tr> tag
2233 {
2234 retval = Token::make_RetVal_EndTableRow();
2235 }
2236 else // found <tr> tag
2237 {
2238 retval = Token::make_RetVal_TableRow();
2239 }
2240 }
2241 else if (tagId==HtmlTagType::HTML_TABLE && parser()->context.token->endTag) // found </table>
2242 {
2243 retval = Token::make_RetVal_EndTable();
2244 }
2245 else // found some other tag
2246 {
2247 warn_doc_error(parser()->context.fileName,parser()->tokenizer.getLineNr(),"expected <td>, <th> or <tr> tag but "
2248 "found <{}{}> instead!",parser()->context.token->endTag ? "/" : "", parser()->context.token->name);
2249 parser()->tokenizer.pushBackHtmlTag(parser()->context.token->name);
2250 goto endrow;
2251 }
2252 }
2253 else // token other than html token
2254 {
2255 warn_doc_error(parser()->context.fileName,parser()->tokenizer.getLineNr(),"expected <td>, <th> or <tr> tag but found {} token instead!",
2256 tok.to_string());
2257 goto endrow;
2258 }
2259 }
2260 }
2261 while (retval.is_any_of(TokenRetval::RetVal_TableCell,TokenRetval::RetVal_TableHCell));
2262 cell->markLast(true);
2263
2264endrow:
2265 return retval;
2266}
void markLast(bool v=true)
Definition docnode.h:1209
void markFirst(bool v=true)
Definition docnode.h:1208
Token parse()
Definition docnode.cpp:1934
bool isHeading() const
Definition docnode.cpp:2086
DocNodeVariant * thisVariant()
Definition docnode.h:92
void append(Args &&... args)
Append a new DocNodeVariant to the list by constructing it with type T and parameters Args.
Definition docnode.h:1404
T * get_last()
Returns a pointer to the last element in the list if that element exists and holds a T,...
Definition docnode.h:1415
DocTokenizer tokenizer
DocParserContext context
void pushBackHtmlTag(const DString &tag)
bool is(TokenRetval rv) const
TOKEN_SPECIFICATIONS RETVAL_SPECIFICATIONS const char * to_string() const
bool is_any_of(ARGS... args) const
HtmlAttribList attribs
HtmlTagType
Definition cmdmapper.h:174
#define AUTO_TRACE(...)
Definition docnode.cpp:53
static Token skipSpacesForTable(DocParser *parser)
Definition docnode.cpp:2101
#define warn_doc_error(file, line, fmt,...)
Definition message.h:112
const Mapper< HtmlTagType > * htmlTagMapper
TokenInfo * token
Definition docparser_p.h:94

References DocNodeList::append(), TokenInfo::attribs, AUTO_TRACE, DocCompoundNode::children(), DocParser::context, DocNodeList::get_last(), HTML_TABLE, HTML_TD, HTML_TH, HTML_TR, Mappers::htmlTagMapper, Token::is(), Token::is_any_of(), isHeading(), DocHtmlCell::markFirst(), DocHtmlCell::markLast(), DocHtmlCell::parse(), DocNode::parser(), DocTokenizer::pushBackHtmlTag(), skipSpacesForTable(), DocNode::thisVariant(), Token::to_string(), DocParserContext::token, DocParser::tokenizer, and warn_doc_error.

◆ parseXml()

Token DocHtmlRow::parseXml ( bool header)

Definition at line 2268 of file docnode.cpp.

2269{
2270 AUTO_TRACE();
2271 Token retval = Token::make_RetVal_OK();
2272 auto ns = AutoNodeStack(parser(),thisVariant());
2273
2274 bool isFirst=true;
2275 DocHtmlCell *cell=nullptr;
2276
2277 // get next token
2278 Token tok=parser()->tokenizer.lex();
2279 // skip whitespace
2280 while (tok.is_any_of(TokenRetval::TK_WHITESPACE,TokenRetval::TK_NEWPARA)) tok=parser()->tokenizer.lex();
2281 // should find a html tag now
2282 if (tok.is(TokenRetval::TK_HTMLTAG))
2283 {
2284 HtmlTagType tagId=Mappers::htmlTagMapper->map(parser()->context.token->name);
2285 if (tagId==HtmlTagType::XML_TERM && !parser()->context.token->endTag) // found <term> tag
2286 {
2287 }
2288 else if (tagId==HtmlTagType::XML_DESCRIPTION && !parser()->context.token->endTag) // found <description> tag
2289 {
2290 }
2291 else // found some other tag
2292 {
2293 warn_doc_error(parser()->context.fileName,parser()->tokenizer.getLineNr(),"expected <term> or <description> tag but "
2294 "found <{}> instead!",parser()->context.token->name);
2295 parser()->tokenizer.pushBackHtmlTag(parser()->context.token->name);
2296 goto endrow;
2297 }
2298 }
2299 else if (tok.is_any_of(TokenRetval::TK_NONE,TokenRetval::TK_EOF)) // premature end of comment
2300 {
2301 warn_doc_error(parser()->context.fileName,parser()->tokenizer.getLineNr(),"unexpected end of comment while looking"
2302 " for a html description title");
2303 goto endrow;
2304 }
2305 else // token other than html token
2306 {
2307 warn_doc_error(parser()->context.fileName,parser()->tokenizer.getLineNr(),"expected <td> or <th> tag but found {} token instead!",
2308 tok.to_string());
2309 goto endrow;
2310 }
2311
2312 do
2313 {
2315 cell = children().get_last<DocHtmlCell>();
2316 cell->markFirst(isFirst);
2317 isFirst=false;
2318 retval=cell->parseXml();
2319 }
2320 while (retval.is_any_of(TokenRetval::RetVal_TableCell,TokenRetval::RetVal_TableHCell));
2321 cell->markLast(true);
2322
2323endrow:
2324 return retval;
2325}
Token parseXml()
Definition docnode.cpp:1968

References DocNodeList::append(), TokenInfo::attribs, AUTO_TRACE, DocCompoundNode::children(), DocParser::context, DocNodeList::get_last(), Mappers::htmlTagMapper, Token::is(), Token::is_any_of(), isHeading(), DocTokenizer::lex(), DocHtmlCell::markFirst(), DocHtmlCell::markLast(), DocNode::parser(), DocHtmlCell::parseXml(), DocTokenizer::pushBackHtmlTag(), DocNode::thisVariant(), Token::to_string(), DocParserContext::token, DocParser::tokenizer, warn_doc_error, XML_DESCRIPTION, and XML_TERM.

◆ rowIndex()

uint32_t DocHtmlRow::rowIndex ( ) const
inline

Definition at line 1263 of file docnode.h.

1263{ return m_rowIdx; }
uint32_t m_rowIdx
Definition docnode.h:1269

References m_rowIdx.

◆ setRowIndex()

void DocHtmlRow::setRowIndex ( uint32_t idx)
inlineprivate

Definition at line 1266 of file docnode.h.

1266{ m_rowIdx = idx; }

References m_rowIdx.

Referenced by DocHtmlTable::computeTableGrid().

◆ setVisibleCells()

void DocHtmlRow::setVisibleCells ( uint32_t n)
inline

Definition at line 1261 of file docnode.h.

1261{ m_visibleCells = n; }
uint32_t m_visibleCells
Definition docnode.h:1268

References m_visibleCells.

Referenced by DocHtmlTable::computeTableGrid().

◆ visibleCells()

uint32_t DocHtmlRow::visibleCells ( ) const
inline

Definition at line 1262 of file docnode.h.

1262{ return m_visibleCells; }

References m_visibleCells.

◆ DocHtmlTable

friend class DocHtmlTable
friend

Definition at line 1252 of file docnode.h.

References DocHtmlTable.

Referenced by DocHtmlTable.

Member Data Documentation

◆ m_attribs

HtmlAttribList DocHtmlRow::m_attribs
private

Definition at line 1267 of file docnode.h.

Referenced by attribs(), and DocHtmlRow().

◆ m_rowIdx

uint32_t DocHtmlRow::m_rowIdx = static_cast<uint32_t>(-1)
private

Definition at line 1269 of file docnode.h.

Referenced by rowIndex(), and setRowIndex().

◆ m_visibleCells

uint32_t DocHtmlRow::m_visibleCells = 0
private

Definition at line 1268 of file docnode.h.

Referenced by setVisibleCells(), and visibleCells().


The documentation for this class was generated from the following files: