Updated.
[rsync/rsync-patches.git] / ODBC-dblog.diff
index 00f334e..4871be9 100644 (file)
@@ -12,8 +12,19 @@ Patch provided by Steve Sether.
 dblog.c file has a compile problem, it's probably my fault...)
 
 
---- README-ODBC        2004-02-13 17:08:33.000000000 -0800
-+++ README-ODBC        2004-04-07 22:42:28.000000000 -0700
+--- Makefile.in        10 Feb 2004 17:06:11 -0000      1.98
++++ Makefile.in        24 Apr 2004 08:14:37 -0000
+@@ -32,7 +32,7 @@ ZLIBOBJ=zlib/deflate.o zlib/infblock.o z
+       zlib/inflate.o zlib/inftrees.o zlib/infutil.o zlib/trees.o \
+       zlib/zutil.o zlib/adler32.o
+ OBJS1=rsync.o generator.o receiver.o cleanup.o sender.o exclude.o util.o \
+-      main.o checksum.o match.o syscall.o log.o backup.o
++      main.o checksum.o match.o syscall.o log.o backup.o @EXTRA_OBJECT@
+ OBJS2=options.o flist.o io.o compat.o hlink.o token.o uidlist.o socket.o \
+       fileio.o batch.o clientname.o
+ OBJS3=progress.o pipe.o
+--- /dev/null  1 Jan 1970 00:00:00 -0000
++++ README-ODBC        24 Apr 2004 08:14:37 -0000
 @@ -0,0 +1,80 @@
 +This patch adds the following options:
 +
@@ -95,19 +106,8 @@ dblog.c file has a compile problem, it's probably my fault...)
 +row is inserted (as is done when the session ID is automatically generates
 +unique IDs).
 +Defaults to True.
---- Makefile.in        10 Feb 2004 17:06:11 -0000      1.98
-+++ Makefile.in        8 Apr 2004 05:56:31 -0000
-@@ -32,7 +32,7 @@ ZLIBOBJ=zlib/deflate.o zlib/infblock.o z
-       zlib/inflate.o zlib/inftrees.o zlib/infutil.o zlib/trees.o \
-       zlib/zutil.o zlib/adler32.o
- OBJS1=rsync.o generator.o receiver.o cleanup.o sender.o exclude.o util.o \
--      main.o checksum.o match.o syscall.o log.o backup.o
-+      main.o checksum.o match.o syscall.o log.o backup.o @EXTRA_OBJECT@
- OBJS2=options.o flist.o io.o compat.o hlink.o token.o uidlist.o socket.o \
-       fileio.o batch.o clientname.o
- OBJS3=progress.o pipe.o
 --- cleanup.c  27 Jan 2004 08:14:33 -0000      1.21
-+++ cleanup.c  8 Apr 2004 05:56:31 -0000
++++ cleanup.c  24 Apr 2004 08:14:37 -0000
 @@ -138,7 +138,12 @@ void _exit_cleanup(int code, const char 
                        code = RERR_VANISHED;
        }
@@ -123,7 +123,7 @@ dblog.c file has a compile problem, it's probably my fault...)
        if (verbose > 2)
                rprintf(FINFO,"_exit_cleanup(code=%d, file=%s, line=%d): about to call exit(%d)\n", 
 --- clientserver.c     14 Apr 2004 23:33:34 -0000      1.121
-+++ clientserver.c     15 Apr 2004 18:51:14 -0000
++++ clientserver.c     24 Apr 2004 08:14:37 -0000
 @@ -311,6 +311,9 @@ static int rsync_module(int f_in, int f_
        exclude_path_prefix = NULL;
  
@@ -144,8 +144,8 @@ dblog.c file has a compile problem, it's probably my fault...)
                } else {
                        rprintf(FINFO,"rsync %s %s from %s (%s)\n",
                                am_sender?"on":"to",
---- configure.in       9 Apr 2004 18:09:16 -0000       1.190
-+++ configure.in       15 Apr 2004 18:51:14 -0000
+--- configure.in       17 Apr 2004 18:40:16 -0000      1.191
++++ configure.in       24 Apr 2004 08:14:38 -0000
 @@ -94,6 +94,8 @@ AC_ARG_WITH(rsync-path,
        [  --with-rsync-path=PATH  set default --rsync-path to PATH (default: rsync)],
        [ RSYNC_PATH="$with_rsync_path" ],
@@ -170,8 +170,102 @@ dblog.c file has a compile problem, it's probably my fault...)
  fi
  
  AC_MSG_CHECKING([whether to use included libpopt])
---- dblog.c    2004-02-13 17:08:33.000000000 -0800
-+++ dblog.c    2004-04-07 23:18:56.000000000 -0700
+--- /dev/null  1 Jan 1970 00:00:00 -0000
++++ dblog-tables-mysql.sql     24 Apr 2004 08:14:38 -0000
+@@ -0,0 +1,43 @@
++drop table transfer;
++drop table exit;
++drop table session;
++
++CREATE TABLE session (
++      id                      int auto_increment NOT NULL,
++      date                    timestamp NOT NULL,
++      ip_address              varchar(15) NOT NULL,
++      username                varchar(20) NOT NULL,
++      module_name             varchar(20) NOT NULL,
++      module_path             varchar(255) NOT NULL,
++      process_id              int NOT NULL,
++      Primary Key (id)
++);
++
++CREATE TABLE transfer (
++      id                      int auto_increment NOT NULL,
++      session_id              int NOT NULL,
++      date                    timestamp NOT NULL,
++      file_path               varchar(255) NOT NULL,
++      file_name               varchar(255) NOT NULL,
++      file_size               bigint NOT NULL,
++      bytes_transferred       bigint NOT NULL,
++      checksum_bytes_transferred bigint NOT NULL,
++      operation               varchar(20),
++      Primary Key (id),
++      foreign key (session_id) references session (id)
++);
++
++CREATE TABLE exit (
++      id                      int auto_increment NOT NULL,
++      session_id              int NOT NULL,
++      date                    timestamp NOT NULL,
++      total_bytes_written     bigint NOT NULL,
++      total_bytes_read        bigint NOT NULL,
++      total_size              bigint NOT NULL,
++      error_text              varchar(128) NOT NULL,
++      error_code              int NOT NULL,
++      error_file              varchar(64) NOT NULL,
++      error_line              int NOT NULL,
++      Primary Key (id),
++      foreign key (session_id) references session (id)
++);
+--- /dev/null  1 Jan 1970 00:00:00 -0000
++++ dblog-tables-postgresql.sql        24 Apr 2004 08:14:38 -0000
+@@ -0,0 +1,45 @@
++drop table transfer;
++drop table exit;
++drop table session;
++drop sequence session_id_seq;
++create sequence session_id_seq;
++
++CREATE TABLE "session" (
++      "id"                    int NOT NULL,
++      "date"                  timestamp NOT NULL default now(),
++      "ip_address"            varchar(15) NOT NULL,
++      "username"              varchar(20) NOT NULL,
++      "module_name"           varchar(20) NOT NULL,
++      "module_path"           varchar(255) NOT NULL,
++      "process_id"            int NOT NULL,
++      Primary Key (id)
++);
++
++CREATE TABLE "transfer" (
++      "id"                    serial NOT NULL,
++      "session_id"            int NOT NULL,
++      "date"                  timestamp NOT NULL default now(),
++      "file_path"             varchar(512) NOT NULL,
++      "file_name"             varchar(512) NOT NULL,
++      "file_size"             bigint NOT NULL,
++      "bytes_transferred"     bigint NOT NULL,
++      "checksum_bytes_transferred" bigint NOT NULL,
++      "operation"             varchar(20),
++      Primary Key (id),
++      foreign key (session_id) references session (id)
++);
++
++CREATE TABLE "exit" (
++      "id"                    serial NOT NULL,
++      "session_id"            int NOT NULL,
++      "date"                  timestamp NOT NULL default now(),
++      "total_bytes_written"   bigint NOT NULL,
++      "total_bytes_read"      bigint NOT NULL,
++      "total_size"            bigint NOT NULL,
++      "error_text"            varchar(128) NOT NULL,
++      "error_code"            int NOT NULL,
++      "error_file"            varchar(64) NOT NULL,
++      "error_line"            int NOT NULL,
++      Primary Key (id),
++      foreign key (session_id) references session (id)
++);
+--- /dev/null  1 Jan 1970 00:00:00 -0000
++++ dblog.c    24 Apr 2004 08:14:38 -0000
 @@ -0,0 +1,352 @@
 +/*
 + *  ODBC Database logging functions
@@ -525,102 +619,8 @@ dblog.c file has a compile problem, it's probably my fault...)
 +              rprintf(FERROR,"Error at db_log_exit: Not connected to database!\n");
 +      }
 +}
---- dblog-tables-mysql.sql     2004-02-13 17:08:33.000000000 -0800
-+++ dblog-tables-mysql.sql     2004-04-07 23:00:13.000000000 -0700
-@@ -0,0 +1,43 @@
-+drop table transfer;
-+drop table exit;
-+drop table session;
-+
-+CREATE TABLE session (
-+      id                      int auto_increment NOT NULL,
-+      date                    timestamp NOT NULL,
-+      ip_address              varchar(15) NOT NULL,
-+      username                varchar(20) NOT NULL,
-+      module_name             varchar(20) NOT NULL,
-+      module_path             varchar(255) NOT NULL,
-+      process_id              int NOT NULL,
-+      Primary Key (id)
-+);
-+
-+CREATE TABLE transfer (
-+      id                      int auto_increment NOT NULL,
-+      session_id              int NOT NULL,
-+      date                    timestamp NOT NULL,
-+      file_path               varchar(255) NOT NULL,
-+      file_name               varchar(255) NOT NULL,
-+      file_size               bigint NOT NULL,
-+      bytes_transferred       bigint NOT NULL,
-+      checksum_bytes_transferred bigint NOT NULL,
-+      operation               varchar(20),
-+      Primary Key (id),
-+      foreign key (session_id) references session (id)
-+);
-+
-+CREATE TABLE exit (
-+      id                      int auto_increment NOT NULL,
-+      session_id              int NOT NULL,
-+      date                    timestamp NOT NULL,
-+      total_bytes_written     bigint NOT NULL,
-+      total_bytes_read        bigint NOT NULL,
-+      total_size              bigint NOT NULL,
-+      error_text              varchar(128) NOT NULL,
-+      error_code              int NOT NULL,
-+      error_file              varchar(64) NOT NULL,
-+      error_line              int NOT NULL,
-+      Primary Key (id),
-+      foreign key (session_id) references session (id)
-+);
---- dblog-tables-postgresql.sql        2004-02-13 17:08:33.000000000 -0800
-+++ dblog-tables-postgresql.sql        2004-04-07 22:59:55.000000000 -0700
-@@ -0,0 +1,45 @@
-+drop table transfer;
-+drop table exit;
-+drop table session;
-+drop sequence session_id_seq;
-+create sequence session_id_seq;
-+
-+CREATE TABLE "session" (
-+      "id"                    int NOT NULL,
-+      "date"                  timestamp NOT NULL default now(),
-+      "ip_address"            varchar(15) NOT NULL,
-+      "username"              varchar(20) NOT NULL,
-+      "module_name"           varchar(20) NOT NULL,
-+      "module_path"           varchar(255) NOT NULL,
-+      "process_id"            int NOT NULL,
-+      Primary Key (id)
-+);
-+
-+CREATE TABLE "transfer" (
-+      "id"                    serial NOT NULL,
-+      "session_id"            int NOT NULL,
-+      "date"                  timestamp NOT NULL default now(),
-+      "file_path"             varchar(512) NOT NULL,
-+      "file_name"             varchar(512) NOT NULL,
-+      "file_size"             bigint NOT NULL,
-+      "bytes_transferred"     bigint NOT NULL,
-+      "checksum_bytes_transferred" bigint NOT NULL,
-+      "operation"             varchar(20),
-+      Primary Key (id),
-+      foreign key (session_id) references session (id)
-+);
-+
-+CREATE TABLE "exit" (
-+      "id"                    serial NOT NULL,
-+      "session_id"            int NOT NULL,
-+      "date"                  timestamp NOT NULL default now(),
-+      "total_bytes_written"   bigint NOT NULL,
-+      "total_bytes_read"      bigint NOT NULL,
-+      "total_size"            bigint NOT NULL,
-+      "error_text"            varchar(128) NOT NULL,
-+      "error_code"            int NOT NULL,
-+      "error_file"            varchar(64) NOT NULL,
-+      "error_line"            int NOT NULL,
-+      Primary Key (id),
-+      foreign key (session_id) references session (id)
-+);
 --- loadparm.c 4 Feb 2004 07:31:29 -0000       1.50
-+++ loadparm.c 8 Apr 2004 06:31:18 -0000
++++ loadparm.c 24 Apr 2004 08:14:38 -0000
 @@ -122,6 +122,17 @@ typedef struct
        BOOL list;
        BOOL use_chroot;
@@ -694,7 +694,7 @@ dblog.c file has a compile problem, it's probably my fault...)
  FN_LOCAL_BOOL(lp_ignore_nonreadable, ignore_nonreadable)
  FN_LOCAL_STRING(lp_uid, uid)
 --- log.c      20 Jan 2004 05:15:14 -0000      1.71
-+++ log.c      8 Apr 2004 05:56:32 -0000
++++ log.c      24 Apr 2004 08:14:38 -0000
 @@ -75,7 +75,7 @@ struct {
  /*
   * Map from rsync error code to name, or return NULL.
@@ -705,7 +705,7 @@ dblog.c file has a compile problem, it's probably my fault...)
        int i;
        for (i = 0; rerr_names[i].name; i++) {
 --- main.c     10 Feb 2004 03:54:47 -0000      1.192
-+++ main.c     8 Apr 2004 05:56:32 -0000
++++ main.c     24 Apr 2004 08:14:38 -0000
 @@ -120,6 +120,9 @@ static void report(int f)
  
        if (am_daemon) {
@@ -716,8 +716,8 @@ dblog.c file has a compile problem, it's probably my fault...)
                if (f == -1 || !am_sender) return;
        }
  
---- proto.h    14 Apr 2004 23:33:30 -0000      1.188
-+++ proto.h    15 Apr 2004 18:51:15 -0000
+--- proto.h    22 Apr 2004 09:58:09 -0000      1.189
++++ proto.h    24 Apr 2004 08:14:38 -0000
 @@ -51,6 +51,12 @@ int start_daemon(int f_in, int f_out);
  int daemon_main(void);
  void setup_protocol(int f_out,int f_in);
@@ -758,7 +758,7 @@ dblog.c file has a compile problem, it's probably my fault...)
  void log_open(void);
  void log_close(void);
 --- receiver.c 23 Mar 2004 16:50:40 -0000      1.75
-+++ receiver.c 8 Apr 2004 05:56:32 -0000
++++ receiver.c 24 Apr 2004 08:14:39 -0000
 @@ -453,7 +453,9 @@ int recv_files(int f_in,struct file_list
                recv_ok = receive_data(f_in,mapbuf,fd2,fname,file->length);
  
@@ -771,7 +771,7 @@ dblog.c file has a compile problem, it's probably my fault...)
                if (fd1 != -1) {
                        close(fd1);
 --- sender.c   17 Feb 2004 21:57:44 -0000      1.38
-+++ sender.c   8 Apr 2004 05:56:32 -0000
++++ sender.c   24 Apr 2004 08:14:39 -0000
 @@ -283,6 +283,9 @@ void send_files(struct file_list *flist,
                } else  {
                        match_sums(f_out, s, buf, st.st_size);