lexbor / warc_test

The program for testing HTML encoding/parsing for the Lexbor library by WARC files.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

warc_test

This program is designed to test the Lexbor HTML parser on a large number of HTML pages received from commoncrawl.org.

Dependencies

Build and Installation

cmake .

For build with ASAN:

cmake . -DCMAKE_C_FLAGS="-O0 -g -fsanitize=address"

For link lexbor library from not system path:

cmake . -DCMAKE_C_FLAGS="-I/path/to/include/lexbor" -DCMAKE_EXE_LINKER_FLAGS="-L/path/to/lexbor/lib"

Usage

warc_test

warc_test <mode> <log file> <directory>
<mode>:
    single — one parser on all HTML.
    multi — own parser for each HTML.

<log file>: path to log file.
<directory>: path to directory with *.warc.gz files.

For example:

warc_test single ./warc.log /home/user/warcs

warc_entry_by_index

warc_entry_by_index <index> <file.warc.gz>
<index>: starts from 0.
<file.warc.gz>: path to *.warc.gz file.

For example:

warc_entry_by_index 102 /home/user/warcs/CC-MAIN-20190715175205-20190715201205-00354.warc.gz

COPYRIGHT AND LICENSE

Copyright 2019 Alexander Borisov

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.

Please, see LICENSE file.

About

The program for testing HTML encoding/parsing for the Lexbor library by WARC files.

License:Apache License 2.0


Languages

Language:C 88.2%Language:CMake 11.8%