mirror of
https://github.com/nextcloud/desktop.git
synced 2024-11-22 21:15:55 +03:00
128 lines
3.3 KiB
C
128 lines
3.3 KiB
C
/*
|
|
* libcsync -- a library to sync a replica with another
|
|
*
|
|
* Copyright (c) 2006-2007 by Andreas Schneider <mail@cynapses.org>
|
|
*
|
|
* 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 (at your option) 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., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
|
*
|
|
* vim: ts=2 sw=2 et cindent
|
|
*/
|
|
|
|
#include <stdio.h>
|
|
#include <string.h>
|
|
#include <stdlib.h>
|
|
#include <argp.h>
|
|
|
|
#include <csync.h>
|
|
|
|
const char *argp_program_version = "csync commandline client 0.1";
|
|
const char *argp_program_bug_address = "<csync-devel@csync.org>";
|
|
|
|
/* Program documentation. */
|
|
static char doc[] = "csync -- a user level file synchronizer";
|
|
|
|
/* A description of the arguments we accept. */
|
|
static char args_doc[] = "SOURCE DESTINATION";
|
|
|
|
/* The options we understand. */
|
|
static struct argp_option options[] = {
|
|
{"update", 'u', 0, 0, "Run only the update detection", 0},
|
|
{"reconcile",'r', 0, 0, "Run update detection and recoincilation", 0},
|
|
{NULL, 0, 0, 0, NULL, 0}
|
|
};
|
|
|
|
/* Used by main to communicate with parse_opt. */
|
|
struct argument_s {
|
|
char *args[2]; /* SOURCE and DESTINATION */
|
|
int update;
|
|
int reconcile;
|
|
int propagate;
|
|
};
|
|
|
|
/* Parse a single option. */
|
|
static error_t parse_opt (int key, char *arg, struct argp_state *state) {
|
|
/* Get the input argument from argp_parse, which we
|
|
* know is a pointer to our arguments structure.
|
|
*/
|
|
struct argument_s *arguments = state->input;
|
|
|
|
switch (key) {
|
|
case 'u':
|
|
arguments->reconcile = 0;
|
|
arguments->propagate = 0;
|
|
break;
|
|
case 'r':
|
|
arguments->propagate = 0;
|
|
case ARGP_KEY_ARG:
|
|
if (state->arg_num >= 2) {
|
|
/* Too many arguments. */
|
|
argp_usage (state);
|
|
}
|
|
arguments->args[state->arg_num] = arg;
|
|
break;
|
|
case ARGP_KEY_END:
|
|
if (state->arg_num < 2) {
|
|
/* Not enough arguments. */
|
|
argp_usage (state);
|
|
}
|
|
break;
|
|
default:
|
|
return ARGP_ERR_UNKNOWN;
|
|
}
|
|
return 0;
|
|
}
|
|
|
|
/* Our argp parser. */
|
|
static struct argp argp = {options, parse_opt, args_doc, doc, NULL, NULL, NULL};
|
|
|
|
int main(int argc, char **argv) {
|
|
CSYNC *csync;
|
|
|
|
struct argument_s arguments;
|
|
|
|
/* Default values. */
|
|
arguments.update = 1;
|
|
arguments.reconcile = 1;
|
|
arguments.propagate = 1;
|
|
|
|
/*
|
|
* Parse our arguments; every option seen by parse_opt will
|
|
* be reflected in arguments.
|
|
*/
|
|
argp_parse (&argp, argc, argv, 0, 0, &arguments);
|
|
|
|
if (csync_create(&csync, arguments.args[0], arguments.args[1]) < 0) {
|
|
fprintf(stderr, "csync_create: failed\n");
|
|
exit(1);
|
|
}
|
|
|
|
csync_init(csync);
|
|
printf("Version: %s\n", csync_version());
|
|
|
|
if (arguments.update) {
|
|
csync_update(csync);
|
|
}
|
|
|
|
if (arguments.reconcile) {
|
|
}
|
|
|
|
if (arguments.propagate) {
|
|
}
|
|
|
|
csync_destroy(csync);
|
|
|
|
return 0;
|
|
}
|
|
|