diff options
author | Xavier Roche <xroche@users.noreply.github.com> | 2012-03-19 12:51:31 +0000 |
---|---|---|
committer | Xavier Roche <xroche@users.noreply.github.com> | 2012-03-19 12:51:31 +0000 |
commit | 25adbdabb47499fe641c7bd9595024ff82667058 (patch) | |
tree | 4200bb5e746bc1c0606de615ec99f0a247d4d9ba /src/htsparse.h | |
parent | ad5b7acc19290ff91e0f42a0de448a26760fcf99 (diff) |
httrack 3.30.1
Diffstat (limited to 'src/htsparse.h')
-rw-r--r-- | src/htsparse.h | 108 |
1 files changed, 108 insertions, 0 deletions
diff --git a/src/htsparse.h b/src/htsparse.h new file mode 100644 index 0000000..4efc386 --- /dev/null +++ b/src/htsparse.h @@ -0,0 +1,108 @@ +/* ------------------------------------------------------------ */ +/* +HTTrack Website Copier, Offline Browser for Windows and Unix +Copyright (C) Xavier Roche and other contributors + +This program is free software; you can redistribute it and/or +modify it under the terms of the GNU General Public License +as published by the Free Software Foundation; either version 2 +of the License, or any later version. + +This program is distributed in the hope that it will be useful, +but WITHOUT ANY WARRANTY; without even the implied warranty of +MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +GNU General Public License for more details. + +You should have received a copy of the GNU General Public License +along with this program; if not, write to the Free Software +Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. + + +Important notes: + +- We hereby ask people using this source NOT to use it in purpose of grabbing +emails addresses, or collecting any other private information on persons. +This would disgrace our work, and spoil the many hours we spent on it. + + +Please visit our Website: http://www.httrack.com +*/ + + +/* ------------------------------------------------------------ */ +/* File: htsparse.h parser */ +/* html/javascript/css parser */ +/* and other parser routines */ +/* Author: Xavier Roche */ +/* ------------------------------------------------------------ */ + + +typedef struct { + /* Main object */ + htsblk* r_; + + /* Error handling */ + int* error_; + int* exit_xh_; + int* store_errpage_; + + /* Structural */ + int* filptr_; + char*** filters_; + robots_wizard* robots_; + hash_struct* hash_; + int* lien_max_; + + /* Base & codebase */ + char* base; + char* codebase; + + /* Index */ + int* makeindex_done_; + FILE** makeindex_fp_; + int* makeindex_links_; + char* makeindex_firstlink_; + + /* Html templates */ + char *template_header_; + char *template_body_; + char *template_footer_; + + /* Specific to downloads */ + LLint* stat_fragment_; + TStamp makestat_time; + FILE* makestat_fp; + LLint* makestat_total_; + int* makestat_lnk_; + FILE* maketrack_fp; + + /* Function-dependant */ + char* loc_; + TStamp* last_info_shell_; + int* info_shell_; + +} htsmoduleStructExtended; + + +/* + Main parser, attempt to scan links inside the html/css/js file + Parameters: The public module structure, and the private module variables +*/ +int htsparse(htsmoduleStruct* str, htsmoduleStructExtended* stre); + +/* + Check for 301,302.. errors ("moved") and handle them; re-isuue requests, make + rediretc file, handle filters considerations.. + Parameters: The public module structure, and the private module variables + Returns 0 upon success +*/ +int hts_mirror_check_moved(htsmoduleStruct* str, htsmoduleStructExtended* stre); + +/* + Get the next file on the queue, waiting for it, handling other files in background.. + Parameters: The public module structure, and the private module variables + Returns 0 upon success +*/ +int hts_mirror_wait_for_next_file(htsmoduleStruct* str, htsmoduleStructExtended* stre); + + |