[BACK]Return to import.c CVS log [TXT][DIR] Up to [local] / src / usr.bin / cvs

File: [local] / src / usr.bin / cvs / import.c (download)

Revision 1.7, Wed Mar 30 17:43:04 2005 UTC (19 years, 2 months ago) by joris
Branch: MAIN
Changes since 1.6: +38 -47 lines



move all the client commands to the new command framework.
eliminates a lot of duplicate code.

ok jfb@

/*	$OpenBSD: import.c,v 1.7 2005/03/30 17:43:04 joris Exp $	*/
/*
 * Copyright (c) 2004 Joris Vink <joris@openbsd.org>
 * All rights reserved.
 *
 * Redistribution and use in source and binary forms, with or without
 * modification, are permitted provided that the following conditions
 * are met:
 *
 * 1. Redistributions of source code must retain the above copyright
 *    notice, this list of conditions and the following disclaimer.
 * 2. The name of the author may not be used to endorse or promote products
 *    derived from this software without specific prior written permission.
 *
 * THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES,
 * INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY
 * AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL
 * THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
 * EXEMPLARY, OR CONSEQUENTIAL  DAMAGES (INCLUDING, BUT NOT LIMITED TO,
 * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS;
 * OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
 * WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR
 * OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
 * ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
 */

#include <sys/types.h>
#include <sys/queue.h>

#include <err.h>
#include <dirent.h>
#include <errno.h>
#include <stdio.h>
#include <stdlib.h>
#include <unistd.h>
#include <string.h>
#include <sysexits.h>

#include "log.h"
#include "file.h"
#include "cvs.h"
#include "proto.h"


#define CVS_IMPORT_DEFBRANCH    "1.1.1"

int cvs_import_options(char *, int, char **, int *);
int cvs_import_sendflags(struct cvsroot *);
int cvs_import_file(CVSFILE *, void *);

static RCSNUM *bnum;
static char *branch, *module, *vendor, *release;

struct cvs_cmd_info cvs_import = {
	cvs_import_options,
	cvs_import_sendflags,
	cvs_import_file,
	NULL, NULL,
	CF_RECURSE | CF_IGNORE | CF_NOSYMS,
	CVS_REQ_IMPORT,
	CVS_CMD_SENDDIR
};

int
cvs_import_options(char *opt, int argc, char **argv, int *arg)
{
	int ch;

	while ((ch = getopt(argc, argv, opt)) != -1) {
		switch (ch) {
		case 'b':
			branch = optarg;
			if ((bnum = rcsnum_parse(branch)) == NULL) {
				cvs_log(LP_ERR, "%s is not a numeric branch",
				    branch);
				return (EX_USAGE);
			}
			rcsnum_free(bnum);
			break;
		case 'd':
			break;
		case 'I':
			if (cvs_file_ignore(optarg) < 0) {
				cvs_log(LP_ERR, "failed to add `%s' to list "
				    "of ignore patterns", optarg);
				return (EX_USAGE);
			}
			break;
		case 'k':
			break;
		case 'm':
			cvs_msg = strdup(optarg);
			if (cvs_msg == NULL) {
				cvs_log(LP_ERRNO, "failed to copy message");
				return (EX_DATAERR);
			}
			break;
		default:
			return (EX_USAGE);
		}
	}

	argc -= optind;
	argv += optind;
	*arg = optind;

	if (argc > 4)
		return (EX_USAGE);

	module = argv[0];
	vendor = argv[1];
	release = argv[2];

	if ((cvs_msg == NULL) &&
	    (cvs_msg = cvs_logmsg_get(NULL, NULL, NULL, NULL)) == NULL)
		return (-1);

	return (0);
}

int
cvs_import_sendflags(struct cvsroot *root)
{
	if ((cvs_connect(root) < 0) ||
	    (cvs_sendarg(root, "-b", 0) < 0) ||
	    (cvs_sendarg(root, branch, 0) < 0) ||
	    (cvs_logmsg_send(root, cvs_msg) < 0) ||
	    (cvs_sendarg(root, module, 0) < 0) ||
	    (cvs_sendarg(root, vendor, 0) < 0) ||
	    (cvs_sendarg(root, release, 0) < 0))
		return (EX_PROTOCOL);

	return (0);
}

/*
 * cvs_import_file()
 *
 * Perform the import of a single file or directory.
 */
int
cvs_import_file(CVSFILE *cfp, void *arg)
{
	int ret;
	struct cvsroot *root;
	char fpath[MAXPATHLEN], repodir[MAXPATHLEN];
	char repo[MAXPATHLEN];

	root = CVS_DIR_ROOT(cfp);
	snprintf(repo, sizeof(repo), "%s/%s", root->cr_dir, module);

	cvs_file_getpath(cfp, fpath, sizeof(fpath));
	printf("Importing %s\n", fpath);

	if (cfp->cf_type == DT_DIR) {
		if (!strcmp(CVS_FILE_NAME(cfp), "."))
			strlcpy(repodir, repo, sizeof(repodir));
		else
			snprintf(repodir, sizeof(repodir), "%s/%s", repo, fpath);
		if (root->cr_method != CVS_METHOD_LOCAL) {
			ret = cvs_sendreq(root, CVS_REQ_DIRECTORY, fpath);
			if (ret == 0)
				ret = cvs_sendln(root, repodir);
		} else {
			/* create the directory */
		}

		return (0);
	}

	if (root->cr_method != CVS_METHOD_LOCAL) {
		if (cvs_sendreq(root, CVS_REQ_MODIFIED, CVS_FILE_NAME(cfp)) < 0)
			return (-1);
		if (cvs_sendfile(root, fpath) < 0)
			return (-1);
	} else {
		/* local import */
	}

	return (0);
}