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
|
// Copyright 2015 Kevin B. Hendricks, Stratford, Ontario, All Rights Reserved.
// loosely based on a greatly simplified version of BeautifulSoup4 decode() routine
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
//
// Author: Kevin Hendricks
//
// Serialize back to html / xhtml making as few changes as possible (even in whitespace)
#include <fstream>
#include <iostream>
#include <stdlib.h>
#include <string>
#include <unordered_set>
#include "gumbo.h"
static std::unordered_set<std::string> nonbreaking_inline = {
"a","abbr","acronym","b","bdo","big","br","button","cite","code","del",
"dfn","em","font","i","image","img","input","ins","kbd","label","map",
"nobr","object","q","ruby","rt","s","samp","select","small","span",
"strike","strong","sub","sup","textarea","tt","u","var","wbr"
};
static std::unordered_set<std::string> preserve_whitespace = {
"pre","textarea","script","style"
};
static std::unordered_set<std::string> special_handling = {
"html","body"
};
static std::unordered_set<std::string> no_entity_sub = {
"script","style"
};
static std::unordered_set<std::string> void_tags = {
"area","base","basefont","bgsound","br","command","col","embed",
"event-source","frame","hr","img","input","keygen","link",
"menuitem","meta","param","source","spacer","track","wbr"
};
static std::unordered_set<std::string> structural_tags = {
"article","aside","blockquote","body","canvas","colgroup","div","dl",
"figure","footer","head","header","hr","html","ol","section",
"table","tbody","tfoot","thead","td","th","tr","ul"
};
static inline bool in_set(std::unordered_set<std::string> &s, std::string &key)
{
return s.find(key) != s.end();
}
// These need to match the GumboAttributeNamespaceEnum sequence
static const char * attribute_nsprefixes[4] = { "", "xlink:", "xml:", "xmlns:" };
static inline void rtrim(std::string &s)
{
s.erase(s.find_last_not_of(" \n\r\t\v\f")+1);
}
static inline void ltrim(std::string &s)
{
s.erase(0,s.find_first_not_of(" \n\r\t\v\f"));
}
static inline void ltrimnewlines(std::string &s)
{
s.erase(0,s.find_first_not_of("\n\r"));
}
// trim everything up to and including the newline
static void newlinetrim(std::string &s)
{
size_t pos = s.find("\n");
if (pos != std::string::npos) {
s.erase(0, pos+1);
}
}
static void replace_all(std::string &s, const char * s1, const char * s2)
{
std::string t1(s1);
size_t len = t1.length();
size_t pos = s.find(t1);
while (pos != std::string::npos) {
s.replace(pos, len, s2);
pos = s.find(t1, pos + len);
}
}
static std::string substitute_xml_entities_into_text(const std::string &text)
{
std::string result = text;
// replacing & must come first
replace_all(result, "&", "&");
replace_all(result, "<", "<");
replace_all(result, ">", ">");
replace_all(result, "\xc2\xa0", " ");
return result;
}
static std::string substitute_xml_entities_into_attributes(char quote, const std::string &text)
{
std::string result = substitute_xml_entities_into_text(text);
if (quote == '"') {
replace_all(result,"\"",""");
}
else if (quote == '\'') {
replace_all(result,"'","'");
}
return result;
}
static std::string get_tag_name(GumboNode *node)
{
std::string tagname;
if (node->type == GUMBO_NODE_DOCUMENT) {
tagname = "#document";
return tagname;
} else if ((node->type == GUMBO_NODE_TEXT) || (node->type == GUMBO_NODE_WHITESPACE)) {
tagname = "#text";
return tagname;
} else if (node->type == GUMBO_NODE_CDATA) {
tagname = "#cdata";
return tagname;
}
tagname = gumbo_normalized_tagname(node->v.element.tag);
if ((tagname.empty()) ||
(node->v.element.tag_namespace == GUMBO_NAMESPACE_SVG)) {
// set up to examine original text of tag.
GumboStringPiece gsp = node->v.element.original_tag;
gumbo_tag_from_original_text(&gsp);
// special handling for some svg tag names.
if (node->v.element.tag_namespace == GUMBO_NAMESPACE_SVG) {
const char * data = gumbo_normalize_svg_tagname(&gsp);
// NOTE: data may not be null-terminated!
// since case change only - length must be same as original.
// if no replacement found returns null, not original tag!
if (data != NULL) {
return std::string(data, gsp.length);
}
}
if (tagname.empty()) {
return std::string(gsp.data, gsp.length);
}
}
return tagname;
}
static std::string build_doctype(GumboNode *node)
{
std::string results = "";
if (node->v.document.has_doctype) {
results.append("<!DOCTYPE ");
results.append(node->v.document.name);
std::string pi(node->v.document.public_identifier);
if ((node->v.document.public_identifier != NULL) && !pi.empty() ) {
results.append(" PUBLIC \"");
results.append(node->v.document.public_identifier);
results.append("\"\n \"");
results.append(node->v.document.system_identifier);
results.append("\"");
}
results.append(">\n");
}
return results;
}
// handle the known foreign attribute namespaces
static std::string get_attribute_name(GumboAttribute * at)
{
std::string attr_name = at->name;
GumboAttributeNamespaceEnum attr_ns = at->attr_namespace;
if ((attr_ns == GUMBO_ATTR_NAMESPACE_NONE) || (attr_name == "xmlns")) {
return attr_name;
}
attr_name = std::string(attribute_nsprefixes[attr_ns]) + attr_name;
return attr_name;
}
static std::string build_attributes(GumboAttribute * at, bool no_entities)
{
std::string atts = " ";
std::string name = get_attribute_name(at);
atts.append(name);
std::string attvalue = at->value;
// we handle empty attribute values like so: alt=""
char quote = '"';
std::string qs="\"";
if ( (!attvalue.empty()) ||
(at->original_value.data[0] == '"') ||
(at->original_value.data[0] == '\'') ) {
// determine original quote character used if it exists
quote = at->original_value.data[0];
if (quote == '\'') qs = std::string("'");
if (quote == '"') qs = std::string("\"");
}
atts.append("=");
atts.append(qs);
if (no_entities) {
atts.append(attvalue);
} else {
atts.append(substitute_xml_entities_into_attributes(quote, attvalue));
}
atts.append(qs);
return atts;
}
// forward declaration
static std::string serialize(GumboNode*);
// serialize children of a node
// may be invoked recursively
static std::string serialize_contents(GumboNode* node) {
std::string tagname = get_tag_name(node);
bool no_entity_substitution = in_set(no_entity_sub, tagname);
bool keep_whitespace = in_set(preserve_whitespace, tagname);
bool is_inline = in_set(nonbreaking_inline, tagname);
bool is_structural = in_set(structural_tags, tagname);
// build up result for each child, recursively if need be
GumboVector* children = &node->v.element.children;
std::string contents = "";
bool inject_newline = false;
for (unsigned int i = 0; i < children->length; ++i) {
GumboNode* child = static_cast<GumboNode*> (children->data[i]);
if (child->type == GUMBO_NODE_TEXT) {
inject_newline = false;
if (no_entity_substitution) {
contents.append(std::string(child->v.text.text));
} else {
contents.append(substitute_xml_entities_into_text(std::string(child->v.text.text)));
}
} else if (child->type == GUMBO_NODE_ELEMENT || child->type == GUMBO_NODE_TEMPLATE) {
contents.append(serialize(child));
inject_newline = false;
std::string childname = get_tag_name(child);
if (!is_inline && !keep_whitespace && !in_set(nonbreaking_inline, childname) && is_structural) {
contents.append("\n");
inject_newline = true;
}
} else if (child->type == GUMBO_NODE_WHITESPACE) {
// try to keep all whitespace to keep as close to original as possible
std::string wspace = std::string(child->v.text.text);
if (inject_newline) {
newlinetrim(wspace);
inject_newline = false;
}
contents.append(wspace);
inject_newline = false;
} else if (child->type == GUMBO_NODE_CDATA) {
contents.append("<![CDATA[" + std::string(child->v.text.text) + "]]>");
inject_newline = false;
} else if (child->type == GUMBO_NODE_COMMENT) {
contents.append("<!--" + std::string(child->v.text.text) + "-->");
} else {
fprintf(stderr, "unknown element of type: %d\n", child->type);
inject_newline = false;
}
}
return contents;
}
// serialize a GumboNode back to html/xhtml
// may be invoked recursively
static std::string serialize(GumboNode* node) {
// special case the document node
if (node->type == GUMBO_NODE_DOCUMENT) {
std::string results = build_doctype(node);
results.append(serialize_contents(node));
return results;
}
std::string tagname = get_tag_name(node);
bool need_special_handling = in_set(special_handling, tagname);
bool is_void_tag = in_set(void_tags, tagname);
bool no_entity_substitution = in_set(no_entity_sub, tagname);
// build attr string
std::string atts = "";
const GumboVector * attribs = &node->v.element.attributes;
for (int i=0; i< attribs->length; ++i) {
GumboAttribute* at = static_cast<GumboAttribute*>(attribs->data[i]);
atts.append(build_attributes(at, no_entity_substitution));
}
// determine closing tag type
std::string close = "";
std::string closeTag = "";
if (is_void_tag) {
close = "/";
} else {
closeTag = "</" + tagname + ">";
}
std::string contents;
contents = serialize_contents(node);
if (need_special_handling) {
ltrimnewlines(contents);
rtrim(contents);
contents.append("\n");
}
// build results
std::string results;
results.append("<"+tagname+atts+close+">");
if (need_special_handling) results.append("\n");
results.append(contents);
results.append(closeTag);
if (need_special_handling) results.append("\n");
return results;
}
int main(int argc, char** argv) {
if (argc != 2) {
std::cout << "serialize <html filename>\n";
exit(EXIT_FAILURE);
}
const char* filename = argv[1];
std::ifstream in(filename, std::ios::in | std::ios::binary);
if (!in) {
std::cout << "File " << filename << " not found!\n";
exit(EXIT_FAILURE);
}
std::string contents;
in.seekg(0, std::ios::end);
contents.resize(in.tellg());
in.seekg(0, std::ios::beg);
in.read(&contents[0], contents.size());
in.close();
bool use_xml_header = false;
// remove any xml header line and any trailing whitespace
if (contents.compare(0,5,"<?xml") == 0) {
use_xml_header = true;
size_t end = contents.find_first_of('>', 5);
end = contents.find_first_not_of("\n\r\t\v\f ",end+1);
contents.erase(0,end);
}
GumboOptions myoptions = kGumboDefaultOptions;
myoptions.use_xhtml_rules = true;
GumboOutput* output = gumbo_parse_with_options(&myoptions, contents.data(), contents.length());
if (use_xml_header) {
std::cout << "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n";
}
std::cout << serialize(output->document) << std::endl;
gumbo_destroy_output(output);
}
|