Blob Blame History Raw
/* ------------------------------------------------------------ */
/*
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: Global #define file                                    */
/* Author: Xavier Roche                                         */
/* ------------------------------------------------------------ */

// Fichier réunissant l'ensemble des defines

#ifndef HTTRACK_GLOBAL_DEFH
#  define HTTRACK_GLOBAL_DEFH

// Version
#  define HTTRACK_VERSION      "3.42"
#  define HTTRACK_VERSIONID    "3.42.1"
#  define HTTRACK_AFF_VERSION  "3.x"
#  define HTTRACK_LIB_VERSION  "2.0"

#  ifndef HTS_NOINCLUDES
#    ifndef _WIN32_WCE
#      include <stdio.h>
#      include <stdlib.h>
#    else
#      include <stdio.h>
#      include <stdlib.h>
#      ifdef HTS_CECOMPAT
#        include "cecompat.h"
#      else
#        include "celib.h"
#      endif
#    endif
#  endif

// Définition plate-forme
#  include "htsconfig.h"

#  ifndef HTS_LONGLONG
#    define HTS_LONGLONG 1
#  endif

#  define HTS_DLOPEN 1

// don't spare memory usage by default
#  ifndef HTS_SPARE_MEMORY
#    define HTS_SPARE_MEMORY 0
#  endif

#  ifndef BIGSTK
#    define BIGSTK
#  endif

// compatibilité DOS
#  ifdef _WIN32
#    define HTS_DOSNAME 1
#  else
#    define HTS_DOSNAME 0
#  endif

// utiliser zlib?
#  ifndef HTS_USEZLIB
// autoload
#    define HTS_USEZLIB 1
#  endif

#  ifndef HTS_INET6
#    define HTS_INET6 0
#  endif

// utiliser openssl?
#  ifndef HTS_USEOPENSSL
// autoload
#    define HTS_USEOPENSSL 1
#  endif

// utiliser mms://?
#  ifndef HTS_USEMMS
#    define HTS_USEMMS 1
#  endif

#  ifndef HTS_DLOPEN
#    define HTS_DLOPEN 1
#  endif

#  ifndef HTS_USESWF
#    define HTS_USESWF 1
#  endif

#  ifdef _WIN32
#  else
#    define __cdecl
#  endif

/* rc file */
#  ifdef _WIN32
#    define HTS_HTTRACKRC "httrackrc"
#  else

#    ifndef HTS_ETCPATH
#      define HTS_ETCPATH "/etc"
#    endif
#    ifndef HTS_BINPATH
#      define HTS_BINPATH "/usr/bin"
#    endif
#    ifndef HTS_LIBPATH
#      define HTS_LIBPATH "/usr/lib"
#    endif
#    ifndef HTS_PREFIX
#      define HTS_PREFIX "/usr"
#    endif

#    define HTS_HTTRACKRC ".httrackrc"
#    define HTS_HTTRACKCNF HTS_ETCPATH"/httrack.conf"

#    ifdef DATADIR
#      define HTS_HTTRACKDIR DATADIR"/httrack/"
#    else
#      define HTS_HTTRACKDIR HTS_PREFIX"/share/httrack/"
#    endif

#  endif

#  if HTS_SPARE_MEMORY==0
/* Gestion des tables de hashage */
#    define HTS_HASH_SIZE 20147
/* Taille max d'une URL */
#    define HTS_URLMAXSIZE 1024
/* Taille max ligne de commande (>=HTS_URLMAXSIZE*2) */
#    define HTS_CDLMAXSIZE 1024
#  else
/* Gestion des tables de hashage */
#    define HTS_HASH_SIZE 1023
/* Taille max d'une URL */
#    define HTS_URLMAXSIZE 256
/* Taille max ligne de commande (>=HTS_URLMAXSIZE*2) */
#    define HTS_CDLMAXSIZE 1024
#  endif

/* Copyright (C) Xavier Roche and other contributors */
#  define HTTRACK_AFF_AUTHORS "[XR&CO'2007]"
#  define HTS_DEFAULT_FOOTER "<!-- Mirrored from %s%s by HTTrack Website Copier/"HTTRACK_AFF_VERSION" "HTTRACK_AFF_AUTHORS", %s -->"
#  define HTTRACK_WEB "http://www.httrack.com"
#  define HTS_UPDATE_WEBSITE "http://www.httrack.com/update.php3?Product=HTTrack&Version="HTTRACK_VERSIONID"&VersionStr="HTTRACK_VERSION"&Platform=%d&Language=%s"

#  define H_CRLF "\x0d\x0a"
#  define CRLF   "\x0d\x0a"
#  ifdef _WIN32
#    define LF "\x0d\x0a"
#  else
#    define LF "\x0a"
#  endif

/* équivaut à "paramètre vide", par exemple -F (none) */
#  define HTS_NOPARAM "(none)"
#  define HTS_NOPARAM2 "\"(none)\""

/* maximum et minimum */
#  define maximum(A,B) ( (A) > (B) ? (A) : (B) )
#  define minimum(A,B) ( (A) < (B) ? (A) : (B) )

/* chaine vide? */
#  define strnotempty(A) (((A)[0]!='\0') ? 1 : 0)

/* optimisation inline si possible */
#  ifdef __cplusplus
#    define HTS_INLINE inline
#  else
#    define HTS_INLINE
#  endif

#  ifdef _WIN32
#    ifdef LIBHTTRACK_EXPORTS
#      define HTSEXT_API __declspec(dllexport)
#    else
#      define HTSEXT_API __declspec(dllimport)
#    endif
#  else
#    define HTSEXT_API
#  endif

#  ifndef HTS_LONGLONG
#    ifdef HTS_NO_64_BIT
#      define HTS_LONGLONG 0
#    else
#      define HTS_LONGLONG 1
#    endif
#  endif

// long long int? (or int)
// (and int cast for system functions like malloc() )

#  if HTS_LONGLONG
#    ifdef LLINT_FORMAT
typedef LLINT_TYPE LLint;
typedef LLINT_TYPE TStamp;
#      define LLintP LLINT_FORMAT
#    else

#      ifdef _WIN32
typedef __int64 LLint;
typedef __int64 TStamp;
#        define LLintP "%I64d"
#      elif (defined(__x86_64__) || defined(_LP64) || defined(__64BIT__))
typedef unsigned long int LLint;
typedef unsigned long int TStamp;
#        define LLintP "%ld"
#      else
typedef long long int LLint;
typedef long long int TStamp;
#        define LLintP "%lld"
#      endif

#    endif
       /* HTS_LONGLONG */

#  else
typedef int LLint;
#    define LLintP "%d"
typedef double TStamp;
#  endif

#  ifdef LFS_FLAG
typedef LLint INTsys;
#    define INTsysP LLintP
#    ifdef __linux
#      define HTS_FSEEKO
#    endif
#  else
typedef int INTsys;
#    define INTsysP "%d"
#  endif

#  ifdef _WIN32
#    if defined(_WIN64)
typedef unsigned __int64 T_SOC;
#    else
typedef unsigned __int32 T_SOC;
#    endif
#  else
typedef int T_SOC;
#  endif

/* Default alignement */
#  ifndef HTS_ALIGN
#    define HTS_ALIGN (sizeof(void*))
#  endif

/* IPV4, IPV6 and various unified structures */
#  define HTS_MAXADDRLEN 64

#  ifdef _WIN32
#  else
#    define __cdecl
#  endif

/* mode pour mkdir ET chmod (accès aux fichiers) */
#  define HTS_PROTECT_FOLDER (S_IRUSR|S_IWUSR|S_IXUSR)
#  if HTS_ACCESS
#    define HTS_ACCESS_FILE (S_IRUSR|S_IWUSR|S_IRGRP|S_IROTH)
#    define HTS_ACCESS_FOLDER (S_IRUSR|S_IWUSR|S_IXUSR|S_IRGRP|S_IXGRP|S_IROTH|S_IXOTH)
#  else
#    define HTS_ACCESS_FILE (S_IRUSR|S_IWUSR)
#    define HTS_ACCESS_FOLDER (S_IRUSR|S_IWUSR|S_IXUSR)
#  endif

/* vérifier la déclaration des variables préprocesseur */
#  ifndef HTS_DOSNAME
#    error | HTS_DOSNAME Has not been defined.
#    error | Set it to 1 if you are under DOS, 0 under Unix.
#    error | Example: place this line in you source, before includes:
#    error | #define HTS_DOSNAME 0
#    error
#    error
#  endif
#  ifndef HTS_ACCESS
/* Par défaut, accès à tous les utilisateurs */
#    define HTS_ACCESS 1
#  endif

/* fflush sur stdout */
#  define io_flush { fflush(stdout); fflush(stdin); }



/* HTSLib */

// Cache DNS, accélère les résolution d'adresses
#  define HTS_DNSCACHE 1

// ID d'une pseudo-socket locale pour les file://
#  define LOCAL_SOCKET_ID -500000

// taille de chaque buffer (10 sockets 650 ko)
#  if HTS_SPARE_MEMORY==0
#    define TAILLE_BUFFER 65536
#  else
#    define TAILLE_BUFFER 8192
#  endif

#  ifdef HTS_DO_NOT_USE_PTHREAD
#    error needs threads support
#  endif
#  define USE_BEGINTHREAD 1

#  ifdef _DEBUG
// trace mallocs
//#define HTS_TRACE_MALLOC
#    ifdef HTS_TRACE_MALLOC
typedef unsigned long int t_htsboundary;
#      ifndef HTS_DEF_FWSTRUCT_mlink
#        define HTS_DEF_FWSTRUCT_mlink
typedef struct mlink mlink;
#      endif
struct mlink
{
  char *adr;
  int len;
  int id;
  struct mlink *next;
};
static const t_htsboundary htsboundary = 0xDEADBEEF;
#    endif
#  endif

/* strxxx debugging */
#  ifndef NOSTRDEBUG
#    define STRDEBUG 1
#  endif


/* ------------------------------------------------------------ */
/* Debugging                                                    */
/* ------------------------------------------------------------ */

// débuggage types
#  define DEBUG_SHOWTYPES 0
// backing debug
#  define BDEBUG 0
// chunk receive
#  define CHUNKDEBUG 0
// realloc links debug
#  define MDEBUG 0
// cache debug
#  define DEBUGCA 0
// DNS debug
#  define DEBUGDNS 0
// savename debug
#  define DEBUG_SAVENAME 0
// debug robots
#  define DEBUG_ROBOTS 0
// debug hash
#  define DEBUG_HASH 0
// Vérification d'intégrité
#  define DEBUG_CHECKINT 0
// nbr sockets debug
#  define NSDEBUG 0

// débuggage HTSLib
#  define HDEBUG 0
// surveillance de la connexion
#  define CNXDEBUG 0
// debuggage cookies
#  define DEBUG_COOK 0
// débuggage hard..
#  define HTS_WIDE_DEBUG 0
// debuggage deletehttp et cie
#  define HTS_DEBUG_CLOSESOCK 0
// debug tracage mémoire
#  define MEMDEBUG 0

// htsmain
#  define DEBUG_STEPS 0


// Débuggage de contrôle
#  if HTS_DEBUG_CLOSESOCK
#    define _HTS_WIDE 1
#  endif
#  if HTS_WIDE_DEBUG
#    define _HTS_WIDE 1
#  endif
#  if _HTS_WIDE
extern FILE *DEBUG_fp;
#    define DEBUG_W(A)  { if (DEBUG_fp==NULL) DEBUG_fp=fopen("bug.out","wb"); fprintf(DEBUG_fp,":>"A); fflush(DEBUG_fp); }
#    undef _
#    define _ ,
#  endif



#endif