t_stub.c 2.2 KB
Newer Older
1 2 3 4 5
/*
 * This file contains really simple implementations for rsync global
 * functions, so that module test harnesses can run standalone.
 *
 * Copyright (C) 2001, 2002 Martin Pool <mbp@samba.org>
Wayne Davison's avatar
Wayne Davison committed
6
 * Copyright (C) 2003-2009 Wayne Davison
7 8
 *
 * This program is free software; you can redistribute it and/or modify
9 10 11
 * it under the terms of the GNU General Public License as published by
 * the Free Software Foundation; either version 3 of the License, or
 * (at your option) any later version.
12 13 14 15 16 17
 *
 * 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.
 *
18
 * You should have received a copy of the GNU General Public License along
Wayne Davison's avatar
Wayne Davison committed
19
 * with this program; if not, visit the http://fsf.org website.
20
 */
21 22 23 24

#include "rsync.h"

int modify_window = 0;
25
int module_id = -1;
Wayne Davison's avatar
Wayne Davison committed
26
int relative_paths = 0;
27
int human_readable = 0;
28
int module_dirlen = 0;
29
int preserve_xattrs = 0;
30
mode_t orig_umask = 002;
31
char *partial_dir;
32
char *module_dir;
33
struct filter_list_struct daemon_filter_list;
34

Wayne Davison's avatar
Wayne Davison committed
35
 void rprintf(UNUSED(enum logcode code), const char *format, ...)
36 37 38 39 40 41 42
{
	va_list ap;
	va_start(ap, format);
	vfprintf(stderr, format, ap);
	va_end(ap);
}

Wayne Davison's avatar
Wayne Davison committed
43 44 45 46 47 48 49 50 51 52
 void rsyserr(UNUSED(enum logcode code), int errcode, const char *format, ...)
{
	va_list ap;
	fputs(RSYNC_NAME ": ", stderr);
	va_start(ap, format);
	vfprintf(stderr, format, ap);
	va_end(ap);
	fprintf(stderr, ": %s (%d)\n", strerror(errcode), errcode);
}

53 54 55 56 57 58
 void _exit_cleanup(int code, const char *file, int line)
{
	fprintf(stderr, "exit(%d): %s(%d)\n",
		code, file, line);
	exit(code);
}
59

60 61
 int check_filter(UNUSED(struct filter_list_struct *listp), UNUSED(enum logcode code),
		  UNUSED(const char *name), UNUSED(int name_is_dir))
62
{
Wayne Davison's avatar
Wayne Davison committed
63 64 65
	/* This function doesn't really get called in this test context, so
	 * just return 0. */
	return 0;
66
}
67

68 69 70 71 72
 int make_bak_dir(UNUSED(const char *fullpath))
{
	return -1;
}

73 74 75 76 77
 int copy_xattrs(UNUSED(const char *source), UNUSED(const char *dest))
{
	return -1;
}

78 79
 char *lp_name(UNUSED(int mod))
{
80
	return NULL;
81 82 83 84
}

 BOOL lp_use_chroot(UNUSED(int mod))
{
85
	return 0;
86 87
}

88 89 90 91
 const char *who_am_i(void)
{
	return "tester";
}