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
|
// Copyright 2013 Google Inc. All Rights Reserved.
//
// 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: jdtang@google.com (Jonathan Tang)
//
// Print out the positions of all elements with a certain CSS class.
#include <stdlib.h>
#include <string.h>
#include <algorithm>
#include <fstream>
#include <iostream>
#include <string>
#include "gumbo.h"
static std::string find_line(
const std::string& original_text, const GumboAttribute& attr) {
size_t attr_index = attr.original_value.data - original_text.data();
size_t begin = original_text.rfind("\n", attr_index) + 1;
size_t end = original_text.find("\n", attr_index);
if (end != std::string::npos) {
end--;
} else {
end = (size_t) original_text.length() - 1;
}
end = std::min(end, attr_index + 40);
begin = std::max(begin, attr_index - 40);
return original_text.substr(begin, end - begin);
}
static void search_for_class(
GumboNode* node, const std::string& original_text, const char* cls_name) {
if (node->type != GUMBO_NODE_ELEMENT) {
return;
}
GumboAttribute* cls_attr;
if ((cls_attr = gumbo_get_attribute(&node->v.element.attributes, "class")) &&
strstr(cls_attr->value, cls_name) != NULL) {
std::cout << cls_attr->value_start.line << ":"
<< cls_attr->value_start.column << " - "
<< find_line(original_text, *cls_attr) << std::endl;
}
GumboVector* children = &node->v.element.children;
for (int i = 0; i < children->length; ++i) {
search_for_class(
static_cast<GumboNode*>(children->data[i]), original_text, cls_name);
}
}
int main(int argc, char** argv) {
if (argc != 3) {
std::cout << "Usage: positions_of_class <html filename> <CSS classname>.\n";
exit(EXIT_FAILURE);
}
const char* filename = argv[1];
const char* cls = argv[2];
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();
// If you used contents.c_str(), it'd be harder to match up original
// positions, because c_str() creates a copy of the string and you can't do
// pointer arithmetic betweent contents.data() and the original_* pointers.
GumboOutput* output = gumbo_parse_with_options(
&kGumboDefaultOptions, contents.data(), contents.length());
search_for_class(output->root, contents, cls);
gumbo_destroy_output(output);
}
|