]> git.ipfire.org Git - thirdparty/sarg.git/commitdiff
Restore the creation of the link to the image directory lost during the rewritting...
authorFrédéric Marchal <fmarchal@users.sourceforge.net>
Tue, 29 Dec 2009 18:17:46 +0000 (18:17 +0000)
committerFrédéric Marchal <fmarchal@users.sourceforge.net>
Tue, 29 Dec 2009 18:17:46 +0000 (18:17 +0000)
CMakeLists.txt
configure
configure.in
include/config.h.in
index.c
util.c

index 7982770b38712c0c8417c1e2dfb327e4b0c76c3e..ada1bbd501a2361781637d3db912f1b13f51b32c 100755 (executable)
@@ -104,6 +104,7 @@ CHECK_INCLUDE_FILE(execinfo.h HAVE_EXECINFO_H)
 
 CHECK_FUNCTION_EXISTS(bzero HAVE_BZERO)
 CHECK_FUNCTION_EXISTS(backtrace HAVE_BACKTRACE)
+CHECK_FUNCTION_EXISTS(symlink HAVE_SYMLINK)
 
 # Find gd
 CHECK_INCLUDE_FILE(gd.h HAVE_GD_H)
index d525455724236e74b8e1f3e8a7c80cd8d5af5948..9e7752a277b1c54851d9835f4da780bf57c67b0c 100755 (executable)
--- a/configure
+++ b/configure
@@ -5976,6 +5976,107 @@ fi
 done
 
 
+for ac_func in symlink
+do
+as_ac_var=`$as_echo "ac_cv_func_$ac_func" | $as_tr_sh`
+{ $as_echo "$as_me:$LINENO: checking for $ac_func" >&5
+$as_echo_n "checking for $ac_func... " >&6; }
+if { as_var=$as_ac_var; eval "test \"\${$as_var+set}\" = set"; }; then
+  $as_echo_n "(cached) " >&6
+else
+  cat >conftest.$ac_ext <<_ACEOF
+/* confdefs.h.  */
+_ACEOF
+cat confdefs.h >>conftest.$ac_ext
+cat >>conftest.$ac_ext <<_ACEOF
+/* end confdefs.h.  */
+/* Define $ac_func to an innocuous variant, in case <limits.h> declares $ac_func.
+   For example, HP-UX 11i <limits.h> declares gettimeofday.  */
+#define $ac_func innocuous_$ac_func
+
+/* System header to define __stub macros and hopefully few prototypes,
+    which can conflict with char $ac_func (); below.
+    Prefer <limits.h> to <assert.h> if __STDC__ is defined, since
+    <limits.h> exists even on freestanding compilers.  */
+
+#ifdef __STDC__
+# include <limits.h>
+#else
+# include <assert.h>
+#endif
+
+#undef $ac_func
+
+/* Override any GCC internal prototype to avoid an error.
+   Use char because int might match the return type of a GCC
+   builtin and then its argument prototype would still apply.  */
+#ifdef __cplusplus
+extern "C"
+#endif
+char $ac_func ();
+/* The GNU C library defines this for functions which it implements
+    to always fail with ENOSYS.  Some functions are actually named
+    something starting with __ and the normal name is an alias.  */
+#if defined __stub_$ac_func || defined __stub___$ac_func
+choke me
+#endif
+
+int
+main ()
+{
+return $ac_func ();
+  ;
+  return 0;
+}
+_ACEOF
+rm -f conftest.$ac_objext conftest$ac_exeext
+if { (ac_try="$ac_link"
+case "(($ac_try" in
+  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
+  *) ac_try_echo=$ac_try;;
+esac
+eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\""
+$as_echo "$ac_try_echo") >&5
+  (eval "$ac_link") 2>conftest.er1
+  ac_status=$?
+  grep -v '^ *+' conftest.er1 >conftest.err
+  rm -f conftest.er1
+  cat conftest.err >&5
+  $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5
+  (exit $ac_status); } && {
+        test -z "$ac_c_werror_flag" ||
+        test ! -s conftest.err
+       } && test -s conftest$ac_exeext && {
+        test "$cross_compiling" = yes ||
+        $as_test_x conftest$ac_exeext
+       }; then
+  eval "$as_ac_var=yes"
+else
+  $as_echo "$as_me: failed program was:" >&5
+sed 's/^/| /' conftest.$ac_ext >&5
+
+       eval "$as_ac_var=no"
+fi
+
+rm -rf conftest.dSYM
+rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \
+      conftest$ac_exeext conftest.$ac_ext
+fi
+ac_res=`eval 'as_val=${'$as_ac_var'}
+                $as_echo "$as_val"'`
+              { $as_echo "$as_me:$LINENO: result: $ac_res" >&5
+$as_echo "$ac_res" >&6; }
+as_val=`eval 'as_val=${'$as_ac_var'}
+                $as_echo "$as_val"'`
+   if test "x$as_val" = x""yes; then
+  cat >>confdefs.h <<_ACEOF
+#define `$as_echo "HAVE_$ac_func" | $as_tr_cpp` 1
+_ACEOF
+
+fi
+done
+
+
 # The cast to long int works around a bug in the HP C Compiler
 # version HP92453-01 B.11.11.23709.GP, which incorrectly rejects
 # declarations like `int a3[[(sizeof (unsigned char)) >= 0]];'.
index d03713cd95a052825d46a507b5b2ce1f7f8a478a..1c76dbdf0ba35a13fcd150b844b3735529b89e8e 100644 (file)
@@ -99,6 +99,7 @@ fi
 dnl check for functions
 AC_CHECK_FUNCS(bzero)
 AC_CHECK_FUNCS(backtrace)
+AC_CHECK_FUNCS(symlink)
 
 dnl check for the rlim_t size
 AC_CHECK_SIZEOF(rlim_t,1,[#if HAVE_SYS_RESOURCE_H
index ef853f324d8d432617ae5a2add81f7172efd1f48..1fe586b99f37cc888b823c10cc40577fcfe755ba 100644 (file)
@@ -49,6 +49,7 @@
 #cmakedefine HAVE_MKSTEMP
 #cmakedefine HAVE_FOPEN64
 #cmakedefine HAVE_BACKTRACE
+#cmakedefine HAVE_SYMLINK
 
 #define RLIM_STRING "@RLIM_STRING@"
 #define ICONV_CONST @ICONV_CONST@
diff --git a/index.c b/index.c
index 11f07ed6224986cfa15be7e810023401e7727ec6..6b5d34f88fb3ce9d6a18967e8152759605202c57 100644 (file)
--- a/index.c
+++ b/index.c
@@ -348,6 +348,7 @@ static void file_index_to_date_index(const char *entry)
    int y1, y2, d1, d2;
    int i, j;
    int ndirlen;
+   int monthlen;
    char m1[8], m2[8];
    char olddir[MAXLEN], newdir[MAXLEN];
 
@@ -418,6 +419,7 @@ static void file_index_to_date_index(const char *entry)
    if(strcmp(m1,m2) != 0) ndirlen+=sprintf(newdir+ndirlen,"/%s-%s",m1,m2);
    else ndirlen+=sprintf(newdir+ndirlen,"/%s",m1);
    if(access(newdir, R_OK) != 0) mkdir(newdir,0755);
+   monthlen=ndirlen;
    if(d1!=d2) ndirlen+=sprintf(newdir+ndirlen,"/%02d-%02d",d1,d2);
    else ndirlen+=sprintf(newdir+ndirlen,"/%02d",d1);
 
@@ -427,9 +429,29 @@ static void file_index_to_date_index(const char *entry)
       exit(1);
    }
 
-   /*! \bug The links to the images in the reports are broken after moving the directories
-   as the the HTML files are not at the right level for the images any more.
-   */
+   strcpy(newdir+monthlen,"/images");
+   if(access(newdir, R_OK) != 0) {
+#ifdef HAVE_SYMLINK
+      char linkdir[MAXLEN];
+
+      sprintf(linkdir,"%simages",outdir);
+      if (symlink(linkdir,newdir)) {
+         fprintf(stderr, "SARG: failed to create link \"%s\" to \"%s\" - %s\n",linkdir,newdir,strerror(errno));
+         exit(1);
+      }
+#else
+      char cmd[MAXLEN];
+      int cstatus;
+
+      sprintf(cmd,"ln -s \"%simages\" \"%s/images\"",outdir,newdir);
+      cstatus=system(cmd);
+      if (!WIFEXITED(cstatus) || WEXITSTATUS(cstatus)) {
+         fprintf(stderr, "SARG: command return status %d\n",WEXITSTATUS(cstatus));
+         fprintf(stderr, "SARG: command: %s\n",cmd);
+         exit(1);
+      }
+#endif
+   }
 }
 
 static void date_index_to_file_index(const char *entry)
@@ -511,5 +533,10 @@ static void date_index_to_file_index(const char *entry)
       (void)closedir( dirp3 );
    }
    (void)closedir( dirp2 );
+
+   /*!
+   \bug The links to the images in the reports are broken after moving the directories
+   as the the HTML files are not at the right level for the images any more.
+   */
 }
 
diff --git a/util.c b/util.c
index aa393d9b5437925b43a5aea80c425cc6c5f7784a..f95637860c3122234acecf056fc61f10eae3fa1a 100644 (file)
--- a/util.c
+++ b/util.c
@@ -835,7 +835,10 @@ static void copy_images(void)
             img_ou = fopen(dstfile, "wb");
             if(img_ou!=NULL) {
                while ((nread = fread(buffer,1,sizeof(buffer),img_in))>0) {
-                  fwrite(buffer,1,nread,img_ou);
+                  if (fwrite(buffer,1,nread,img_ou)!=nread) {
+                     fprintf(stderr,"SARG: Failed to copy image %s to %s\n",srcfile,dstfile);
+                     break;
+                  }
                }
                fclose(img_ou);
             } else