Albert S
882871c34f
In combination with musl, parser crashed. glibc fine. Could not pinpoint down the exact reason mainly due to time constraints. Strange, in both cases actually libstdc++ is used, so this is very odd.
21 rivejä
641 B
C++
21 rivejä
641 B
C++
#ifndef PARSER_H
|
|
#define PARSER_H
|
|
#include <boost/regex.hpp>
|
|
#include "iparser.h"
|
|
|
|
class Parser : public IParser
|
|
{
|
|
private:
|
|
std::string processLink(const PageDao &pageDao, UrlProvider &urlProvider, boost::smatch &match) const;
|
|
|
|
public:
|
|
std::string extractCommand(std::string cmdname, std::string content) const;
|
|
std::vector<Headline> extractHeadlines(std::string content) const override;
|
|
std::vector<std::string> extractCategories(std::string content) const override;
|
|
std::string parse(const PageDao &pagedao, UrlProvider &provider, std::string content) const override;
|
|
using IParser::IParser;
|
|
~Parser(){};
|
|
};
|
|
|
|
#endif // PARSER_H
|