/*
* Copyright (c) 1992, Brian Berliner and Jeff Polk
* Copyright (c) 1989-1992, Brian Berliner
*
* You may distribute under the terms of the GNU General Public License as
* specified in the README file that comes with the CVS source distribution.
*
* Create Version
*
* "checkout" creates a "version" of an RCS repository. This version is owned
* totally by the user and is actually an independent copy, to be dealt with
* as seen fit. Once "checkout" has been called in a given directory, it
* never needs to be called again. The user can keep up-to-date by calling
* "update" when he feels like it; this will supply him with a merge of his
* own modifications and the changes made in the RCS original. See "update"
* for details.
*
* "checkout" can be given a list of directories or files to be updated and in
* the case of a directory, will recursivley create any sub-directories that
* exist in the repository.
*
* When the user is satisfied with his own modifications, the present version
* can be committed by "commit"; this keeps the present version in tact,
* usually.
*
* The call is cvs checkout [options] <module-name>...
*
* "checkout" creates a directory ./CVS, in which it keeps its administration,
* in two files, Repository and Entries. The first contains the name of the
* repository. The second contains one line for each registered file,
* consisting of the version number it derives from, its time stamp at
* derivation time and its name. Both files are normal files and can be
* edited by the user, if necessary (when the repository is moved, e.g.)
*/
#include "cvs.h"
#include "savecwd.h"
static char *findslash(char *start, char *p);
static int checkout_proc(int argc, char **argv, const char *where,
const char *mwhere, const char *mfile, int shorten,
int local_specified, const char *omodule,
const char *msg);
/* in update.c */
extern int rcs_update_fileproc(struct file_info *finfo,
char *xoptions, char *xtag, char *xdate, int xforce,
int xbuild, int xaflag, int xprune, int xpipeout,
int which, char *xjoin_rev1, char *xjoin_rev2);
extern void set_global_update_options(int _merge_from_branchpoint, int _conflict_3way, int _case_sensitive, int _force_checkout_time);
static const char *const checkout_usage[] =
{
"Usage:\n %s %s [-ANPRcflnps] [-r rev] [-D date] [-d dir]\n",
" [-j rev1] [-j rev2] [-k kopt] modules...\n",
"\t-A\tReset any sticky tags/date/kopts.\n",
"\t-N\tDon't shorten module paths if -d specified.\n",
"\t-P\tPrune empty directories.\n",
"\t-R\tProcess directories recursively.\n",
"\t-c\t\"cat\" the module database.\n",
"\t-f\tForce a head revision match if tag/date not found.\n",
"\t-l\tLocal directory only, not recursive\n",
"\t-n\tDo not run module program (if any).\n",
"\t-p\tCheck out files to standard output (avoids stickiness).\n",
"\t-s\tLike -c, but include module status.\n",
"\t-r rev\tCheck out revision or tag. (implies -P) (is sticky)\n",
"\t-D date\tCheck out revisions as of date. (implies -P) (is sticky)\n",
"\t-d dir\tCheck out into dir instead of module name.\n",
"\t-k kopt\tUse RCS kopt -k option on checkout. (is sticky)\n",
"\t-j rev\tMerge in changes made between current revision and rev.\n",
"\t-b\tPerform -j merge from branch point.\n",
"\t-m\tPerform -j merge from last merge point (default).\n",
"\t-3\tProduce 3-way conflicts.\n",
"\t-S\tSelect between conflicting case sensitive names.\n",
"\t-t\tUpdate using last checkin time.\n",
"(Specify the --help global option for a list of other help options)\n",
NULL
};
static const char *const export_usage[] =
{
"Usage: %s %s [-NRfln] [-r rev] [-D date] [-d dir] [-k kopt] module...\n",
"\t-N\tDon't shorten module paths if -d specified.\n",
"\t-f\tForce a head revision match if tag/date not found.\n",
"\t-l\tLocal directory only, not recursive\n",
"\t-R\tProcess directories recursively (default).\n",
"\t-n\tDo not run module program (if any).\n",
"\t-r rev\tExport revision or tag.\n",
"\t-D date\tExport revisions as of date.\n",
"\t-d dir\tExport into dir instead of module name.\n",
"\t-k kopt\tUse RCS kopt -k option on checkout.\n",
"(Specify the --help global option for a list of other help options)\n",
NULL
};
static int checkout_prune_dirs;
static int force_tag_match = 1;
static int pipeout;
static int aflag;
static char *options = NULL;
static char *tag = NULL;
static int tag_validated;
static char *date;
static char *join_rev1;
static char *join_rev2;
static int join_tags_validated;
static char *preload_update_dir;
static char *history_name;
static enum mtype m_type;
static int is_rcs;
static int merge_from_branchpoint;
static int conflict_3way;
static int case_sensitive;
static int force_checkout_time;
int checkout (int argc, char **argv)
{
int i;
int c;
DBM *db;
int cat = 0, err = 0, status = 0;
int run_module_prog = 1;
int local = 0;
int shorten = -1;
char *where = NULL;
char *valid_options;
const char *const *valid_usage;
is_rcs = (strcmp (command_name, "rcsfile") == 0);
/*
* A smaller subset of options are allowed for the export command, which
* is essentially like checkout, except that it hard-codes certain
* options to be default (like -kv) and takes care to remove the CVS
* directory when it has done its duty
*/
if (strcmp (command_name, "export") == 0)
{
m_type = EXPORT;
valid_options = "+Nnk:d:flRQqr:D:";
valid_usage = export_usage;
}
else
{
m_type = CHECKOUT;
valid_options = "+ANnk:d:flRp::Qqcsr:D:j:Pbm3St";
valid_usage = checkout_usage;
}
if (argc == -1)
usage (valid_usage);
optind = 0;
while ((c = getopt (argc, argv, valid_options)) != -1)
{
switch (c)
{
case 'A':
aflag = 1;
break;
case 'N':
shorten = 0;
break;
case 'k':
if (options)
xfree (options);
options = RCS_check_kflag (optarg,true,true);
break;
case 'n':
run_module_prog = 0;
break;
case 'Q':
case 'q':
/* The CVS 1.5 client sends these options (in addition to
Global_option requests), so we must ignore them. */
if (!server_active)
error (1, 0,
"-q or -Q must be specified before \"%s\"",
command_name);
break;
case 'l':
local = 1;
break;
case 'R':
local = 0;
break;
case 'P':
checkout_prune_dirs = 1;
break;
case 'p':
if(optarg)
tag = optarg;
pipeout = 1;
run_module_prog = 0; /* don't run module prog when piping */
noexec = 1; /* so no locks will be created */
break;
case 'c':
cat = 1;
break;
case 'd':
where = xstrdup(optarg);
#ifdef _WIN32
preparse_filename(where);
#endif
if (shorten == -1)
shorten = 1;
break;
case 's':
cat = status = 1;
break;
case 'f':
force_tag_match = 0;
break;
case 'r':
tag = optarg;
checkout_prune_dirs = 1;
break;
case 'D':
date = Make_Date (optarg);
checkout_prune_dirs = 1;
break;
case 'j':
if (join_rev2)
error (1, 0, "only two -j options can be specified");
if (join_rev1)
join_rev2 = optarg;
else
join_rev1 = optarg;
break;
case 'b':
merge_from_branchpoint = 1;
break;
case 'm':
merge_from_branchpoint = 0;
break;
case '3':
conflict_3way = 1;
break;
case 'S':
case_sensitive = 1;
break;
case 't':
force_checkout_time = 1;
break;
case '?':
default:
usage (valid_usage);
break;
}
}
argc -= optind;
argv += optind;
if (shorten == -1)
shorten = 0;
if (cat && argc != 0)
error (1, 0, "-c and -s must not get any arguments");
if (!cat && argc == 0)
error (1, 0, "must specify at least one module or directory");
if (where && pipeout)
error (1, 0, "-d and -p are mutually exclusive");
if (m_type == EXPORT)
{
if (!tag && !date)
error (1, 0, "must specify a tag or date");
if (tag && isdigit ((unsigned char) tag[0]))
error (1, 0, "tag `%s' must be a symbolic tag", tag);
}
#ifdef SERVER_SUPPORT
if (server_active && where != NULL)
server_pathname_check(where);
#endif
if(where && (!strcmp(where,"/")
#ifdef _WIN32
|| !strcmp(where,"\\") || (strlen(where)<=3 && *where && where[1]==':')
#endif
))
error(1, 0, "Cannot checkout onto the root directory");
if (!is_rcs && !cat && !safe_location())
error(1, 0, "Cannot check out files into the repository itself");
if (!is_rcs && current_parsed_root->isremote)
{
struct saved_cwd co_cwd;
int ret;
save_cwd(&co_cwd);
if(where && strlen(where))
{
char *p;
for(p=where+strlen(where)-1; p>=where; --p)
if(ISDIRSEP(*p)) *p='\0';
else break;
}
if(where && (isabsolute(where) || pathname_levels(where)>0 || !strcmp(where,".")))
{
char *p,*w;
p=(char*)last_component(where);
if(p>where)
{
w=xstrdup(p);
*(p-1)='\0';
if(CVS_CHDIR(where))
error(1,errno,"Couldn't change directory to '%s'",where);
xfree(where);
where=w;
}
if(!strcmp(where,".."))
{
if(CVS_CHDIR(where))
error(1,errno,"Couldn't change directory to '%s'",where);
xfree(where);
}
else if(!strcmp(where,".") || !strcmp(where,""))
{
xfree(where); /* This misrepresents the '.' case, which doesn't work anyway */
}
}
if (argc > 1)
shorten = 0;
std::vector<cvs::filename> args;
if(supported_request("expand-modules"))
{
send_file_names(argc,argv,SEND_EXPAND_WILD);
client_module_expansion.clear();
send_to_server("expand-modules\n",0);
err = get_server_responses();
if(err)
return err;
args=client_module_expansion;
}
else
{
for(int i=0; i<argc; i++)
args.push_back(argv[i]);
}
if (!run_module_prog)
send_arg ("-n");
if (local)
send_arg ("-l");
if (pipeout)
send_arg ("-p");
if (!force_tag_match)
send_arg ("-f");
if (aflag)
send_arg("-A");
if (!shorten)
send_arg("-N");
if (checkout_prune_dirs && m_type == CHECKOUT)
send_arg("-P");
client_prune_dirs = checkout_prune_dirs;
if (cat && !status)
send_arg("-c");
if (where != NULL)
option_with_arg ("-d", where);
if (status)
send_arg("-s");
if (options != NULL && options[0] != '\0')
option_with_arg ("-k", options);
option_with_arg ("-r", tag);
if (date)
client_senddate (date);
if (join_rev1 != NULL)
option_with_arg ("-j", join_rev1);
if (join_rev2 != NULL)
option_with_arg ("-j", join_rev2);
send_file_names(argc,argv,SEND_EXPAND_WILD);
for (size_t i = 0; i < args.size(); ++i)
{
cvs::filename w;
const char *pw;
if(shorten && where)
pw = where;
else if(where)
{
cvs::sprintf(w,128,"%s/%s",where,args[i].c_str());
pw=w.c_str();
}
else
pw=args[i].c_str();
if(isfile(pw))
send_files (1, (char**)&pw, local, 0, SEND_BUILD_DIRS);
}
send_a_repository ("", current_parsed_root->directory, "");
send_to_server (m_type == EXPORT ? "export\n" : "co\n", 0);
ret = get_responses_and_close ();
restore_cwd(&co_cwd,NULL);
return ret;
}
if(is_rcs)
{
int n;
if(!argc)
usage(valid_usage);
for(n=0; n<argc; n++)
{
struct file_info finfo = {0};
char *tmp = find_rcs_filename(argv[n]);
const char *name;
if(!tmp)
error(1,ENOENT,"%s",argv[n]);
finfo.fullname=fullpathname(tmp, &name);
finfo.file = xstrdup(name);
char *ff = xstrdup(finfo.fullname);
finfo.update_dir = ff;
ff[(name-finfo.fullname)-1]='\0';
finfo.rcs = RCS_fopen(finfo.fullname);
if(finfo.rcs)
{
err += rcs_update_fileproc(&finfo,options, tag, date,
0, 0, aflag, checkout_prune_dirs,
pipeout, 0, join_rev1, join_rev2);
freercsnode(&finfo.rcs);
}
else
{
error(1,ENOENT,"%s",tmp);
err++;
}
xfree(finfo.fullname);
xfree(finfo.file);
xfree(finfo.update_dir);
xfree(tmp);
}
}
else
{
if (cat)
{
cat_module (status);
xfree (options);
options = NULL;
return 0;
}
db = open_module ();
/* If we've specified something like "cvs co foo/bar baz/quux"
don't try to shorten names. There are a few cases in which we
could shorten (e.g. "cvs co foo/bar foo/baz"), but we don't
handle those yet. Better to have an extra directory created
than the thing checked out under the wrong directory name. */
if (argc > 1)
shorten = 0;
/* If we will be calling history_write, work out the name to pass
it. */
if (m_type == CHECKOUT && !pipeout)
{
if (tag && date)
{
history_name = (char*)xmalloc (strlen (tag) + strlen (date) + 2);
sprintf (history_name, "%s:%s", tag, date);
}
else if (tag)
history_name = tag;
else
history_name = date;
}
set_global_update_options(merge_from_branchpoint,conflict_3way,case_sensitive,force_checkout_time);
for (i = 0; i < argc; i++)
err += do_module (db, argv[i], m_type, "Updating", checkout_proc,
where, shorten, local, run_module_prog, !pipeout,
NULL);
close_module (db);
}
xfree (options);
xfree(where);
return (err);
}
/* FIXME: This is and emptydir_name are in checkout.c for historical
reasons, probably want to move them. */
int
safe_location ()
{
char *current;
char hardpath[PATH_MAX+5];
size_t hardpath_len;
int x;
int retval;
#ifdef HAVE_READLINK
/* FIXME-arbitrary limit: should be retrying this like xgetwd.
But how does readlink let us know that the buffer was too small?
(by returning sizeof hardpath - 1?). */
x = readlink(current_parsed_root->directory, hardpath, sizeof hardpath - 1);
#else
x = -1;
#endif
if (x == -1)
{
strcpy(hardpath, current_parsed_root->directory);
}
else
{
hardpath[x] = '\0';
}
current = xgetwd_mapped ();
if (current == NULL)
error (1, errno, "could not get working directory");
hardpath_len = strlen (hardpath);
if (strlen (current) >= hardpath_len
&& strncmp (current, hardpath, hardpath_len) == 0)
{
if (/* Current is a subdirectory of hardpath. */
current[hardpath_len] == '/'
/* Current is hardpath itself. */
|| current[hardpath_len] == '\0')
retval = 0;
else
/* It isn't a problem. For example, current is
"/foo/cvsroot-bar" and hardpath is "/foo/cvsroot". */
retval = 1;
}
else
retval = 1;
xfree (current);
return retval;
}
struct dir_to_build
{
/* What to put in CVS/Repository. */
char *repository;
/* The path to the directory. */
char *dirpath;
/* If set, don't build the directory, just change to it.
The caller will also want to set REPOSITORY to NULL. */
int just_chdir;
struct dir_to_build *next;
};
static int build_dirs_and_chdir (struct dir_to_build *list,
int sticky);
static void build_one_dir (const char *repository, const char *dirpath, int sticky)
{
FILE *fp;
if (isfile (CVSADM))
{
if (m_type == EXPORT)
error (1, 0, "cannot export into a working directory");
}
else if (m_type == CHECKOUT)
{
if (Create_Admin (".", dirpath, repository,
sticky ? tag : (char *) NULL,
sticky ? date : (char *) NULL,
/* FIXME? This is a guess. If it is important
for nonbranch to be set correctly here I
think we need to write it one way now and
then rewrite it later via WriteTag, once
we've had a chance to call RCS_nodeisbranch
on each file. */
0, 1))
return;
if (server_active)
server_template (dirpath, repository);
if (!noexec)
{
fp = open_file (CVSADM_ENTSTAT, "w+");
if (fclose (fp) == EOF)
error (1, errno, "cannot close %s", CVSADM_ENTSTAT);
#ifdef SERVER_SUPPORT
if (server_active)
server_set_entstat (dirpath, repository);
#endif
}
}
}
/*
* process_module calls us back here so we do the actual checkout stuff
*/
/* ARGSUSED */
static int checkout_proc(int argc, char **argv, const char *where_orig,
const char *mwhere, const char *mfile, int shorten,
int local_specified, const char *omodule,
const char *msg)
{
char *myargv[2];
int err = 0;
int which = 0;
char *cp;
char *repository;
char *oldupdate = NULL;
char *where;
const char *mapped_repository;
const char *err_msg;
/*
* OK, so we're doing the checkout! Our args are as follows:
* argc,argv contain either dir or dir followed by a list of files
* where contains where to put it (if supplied by checkout)
* mwhere contains the module name or -d from module file
* mfile says do only that part of the module
* shorten = 1 says shorten as much as possible
* omodule is the original arg to do_module()
*/
/* Set up the repository (maybe) for the bottom directory.
Allocate more space than we need so we don't need to keep
reallocating this string. */
repository = (char*)xmalloc (strlen (current_parsed_root->directory)
+ strlen (argv[0])
+ (mfile == NULL ? 0 : strlen (mfile))
+ 10);
(void) sprintf (repository, "%s/%s", current_parsed_root->directory, argv[0]);
Sanitize_Repository_Name (repository);
mapped_repository = map_repository(repository);
if (! verify_read(mapped_repository,NULL,tag,&err_msg,NULL))
{
if(tag)
error (0, 0, "User %s cannot read %s on tag/branch %s", CVS_Username, fn_root(argv[0]), tag);
else
error (0, 0, "User %s cannot read %s", CVS_Username, fn_root(argv[0]));
if(err_msg)
error(0,0,"%s",err_msg);
return (1);
}
/* save the original value of preload_update_dir */
if (preload_update_dir != NULL)
oldupdate = xstrdup (preload_update_dir);
/* Allocate space and set up the where variable. We allocate more
space than necessary here so that we don't have to keep
reallocaing it later on. */
where = (char*)xmalloc (strlen (argv[0])
+ (mfile == NULL ? 0 : strlen (mfile))
+ (mwhere == NULL ? 0 : strlen (mwhere))
+ (where_orig == NULL ? 0 : strlen (where_orig))
+ 10);
/* Yes, this could be written in a less verbose way, but in this
form it is quite easy to read.
FIXME? The following code that sets should probably be moved
to do_module in modules.c, since there is similar code in
patch.c and rtag.c. */
if (shorten)
{
if (where_orig != NULL)
{
/* If the user has specified a directory with `-d' on the
command line, use it preferentially, even over the `-d'
flag in the modules file. */
strcpy (where, where_orig);
}
else if (mwhere != NULL)
{
/* Second preference is the value of mwhere, which is from
the `-d' flag in the modules file. */
strcpy (where, mwhere);
}
else
{
/* Third preference is the directory specified in argv[0]
which is this module'e directory in the repository. */
strcpy (where, argv[0]);
}
}
else
{
/* Use the same preferences here, bug don't shorten -- that
is, tack on where_orig if it exists. */
*where = '\0';
if (where_orig != NULL)
{
strcat (where, where_orig);
strcat (where, "/");
}
/* If the -d flag in the modules file specified an absolute
directory, let the user override it with the command-line
-d option. */
if ((mwhere != NULL) && (! isabsolute (mwhere)))
strcat (where, mwhere);
else
{
strcat (where, argv[0]);
}
}
strip_trailing_slashes (where); /* necessary? */
/* At this point, the user may have asked for a single file or
directory from within a module. In that case, we should modify
where, repository, and argv as appropriate. */
if (mfile != NULL)
{
/* The mfile variable can have one or more path elements. If
it has multiple elements, we want to tack those onto both
repository and where. The last element may refer to either
a file or directory. Here's what to do:
it refers to a directory
-> simply tack it on to where and repository
it refers to a file
-> munge argv to contain `basename mfile` */
char *cp;
char *path;
/* Paranoia check. */
if (mfile[strlen (mfile) - 1] == '/')
{
error (0, 0, "checkout_proc: trailing slash on mfile (%s)!",
mfile);
}
/* Does mfile have multiple path elements? */
cp = strrchr (mfile, '/');
if (cp != NULL)
{
*cp = '\0';
(void) strcat (repository, "/");
(void) strcat (repository, mfile);
(void) strcat (where, "/");
(void) strcat (where, mfile);
mfile = cp + 1;
}
/* Now mfile is a single path element. */
path = (char*)xmalloc (strlen (repository) + strlen (mfile) + 5);
(void) sprintf (path, "%s/%s", repository, mfile);
if (isdir (path))
{
/* It's a directory, so tack it on to repository and
where, as we did above. */
(void) strcat (repository, "/");
(void) strcat (repository, mfile);
(void) strcat (where, "/");
(void) strcat (where, mfile);
}
else
{
/* It's a file, which means we have to screw around with
argv. */
myargv[0] = argv[0];
myargv[1] = (char*)mfile;
argc = 2;
argv = myargv;
}
xfree (path);
}
if (preload_update_dir != NULL)
{
preload_update_dir =
(char*)xrealloc (preload_update_dir,
strlen (preload_update_dir) + strlen (where) + 5);
strcat (preload_update_dir, "/");
strcat (preload_update_dir, where);
}
else
preload_update_dir = xstrdup (where);
/*
* At this point, where is the directory we want to build, repository is
* the repository for the lowest level of the path.
*
* We need to tell build_dirs not only the path we want it to
* build, but also the repositories we want it to populate the
* path with. To accomplish this, we walk the path backwards, one
* pathname component at a time, constucting a linked list of
* struct dir_to_build.
*/
/*
* If we are sending everything to stdout, we can skip a whole bunch of
* work from here
*/
if (!pipeout)
{
struct dir_to_build *head;
char *reposcopy;
if (fnncmp (repository, current_parsed_root->directory,
strlen (current_parsed_root->directory)) != 0)
{
error (1, 0, "internal error: %s doesn't start with %s in checkout_proc",
repository, current_parsed_root->directory);
}
/* We always create at least one directory, which corresponds to
the entire strings for WHERE and REPOSITORY. */
head = (struct dir_to_build *) xmalloc (sizeof (struct dir_to_build));
/* Special marker to indicate that we don't want build_dirs_and_chdir
to create the CVSADM directory for us. */
head->repository = NULL;
head->dirpath = xstrdup (where);
head->next = NULL;
head->just_chdir = 0;
/* Make a copy of the repository name to play with. */
reposcopy = xstrdup (repository);
/* FIXME: this should be written in terms of last_component
instead of hardcoding '/'. This presumably affects OS/2,
NT, &c, if the user specifies '\'. Likewise for the call
to findslash. */
cp = where + strlen (where);
while (cp > where)
{
struct dir_to_build *pnew;
cp = findslash (where, cp - 1);
if (cp == NULL)
break; /* we're done */
pnew = (struct dir_to_build *)
xmalloc (sizeof (struct dir_to_build));
pnew->dirpath = (char*)xmalloc (strlen (where));
/* If the user specified an absolute path for where, the
last path element we create should be the top-level
directory. */
if (cp > where)
{
strncpy (pnew->dirpath, where, cp - where);
pnew->dirpath[cp - where] = '\0';
#ifdef _WIN32
if((cp - where) == 2 && where[1]==':')
strcat(pnew->dirpath,"/");
#endif
}
else
{
/* where should always be at least one character long. */
assert (where[0] != '\0');
strcpy (pnew->dirpath, "/");
}
pnew->next = head;
head = pnew;
/* If where consists of multiple pathname components,
then we want to just cd into it, without creating
directories or modifying CVS directories as we go.
In CVS 1.9 and earlier, the code actually does a
CVS_CHDIR up-front; I'm not going to try to go back
to that exact code but this is somewhat similar
in spirit. */
if (where_orig != NULL
&& cp - where < strlen (where_orig))
{
pnew->repository = NULL;
pnew->just_chdir = 1;
continue;
}
pnew->just_chdir = 0;
/* Now figure out what repository directory to generate.
The most complete case would be something like this:
The modules file contains
foo -d bar/baz quux
The command issued was:
cvs co -d what/ever -N foo
The results in the CVS/Repository files should be:
. -> (don't touch CVS/Repository)
(I think this case might be buggy currently)
what -> (don't touch CVS/Repository)
ever -> . (same as "cd what/ever; cvs co -N foo")
bar -> Emptydir (generated dir -- not in repos)
baz -> quux (finally!) */
if (fncmp (reposcopy, current_parsed_root->directory) == 0)
{
/* We can't walk up past CVSROOT. Instead, the
repository should be Emptydir. */
pnew->repository = emptydir_name ();
}
else
{
/* It's a directory in the repository! */
char *rp;
/* We'll always be below CVSROOT, but check for
paranoia's sake. */
rp = findslash(reposcopy, reposcopy+strlen(reposcopy));
if (rp == NULL)
error (1, 0,
"internal error: %s doesn't contain a slash",
reposcopy);
*rp = '\0';
pnew->repository = (char*)xmalloc (strlen (reposcopy) + 5);
(void) strcpy (pnew->repository, reposcopy);
if (fncmp (reposcopy, current_parsed_root->directory) == 0)
{
/* Special case -- the repository name needs
to be "/path/to/repos/." (the trailing dot
is important). We might be able to get rid
of this after the we check out the other
code that handles repository names. */
(void) strcat (pnew->repository, "/.");
}
}
}
/* clean up */
xfree (reposcopy);
{
int where_is_absolute = isabsolute (where);
int build_dir_state;
/* The top-level CVSADM directory should always be
current_parsed_root->directory. Create it, but only if WHERE is
relative. If WHERE is absolute, our current directory
may not have a thing to do with where the sources are
being checked out. If it does, build_dirs_and_chdir
will take care of creating adm files here. */
/* FIXME: checking where_is_absolute is a horrid kludge;
I suspect we probably can just skip the call to
build_one_dir whenever the -d command option was specified
to checkout. */
if (! where_is_absolute && top_level_admin && m_type == CHECKOUT)
{
/* It may be argued that we shouldn't set any sticky
bits for the top-level repository. FIXME? */
build_one_dir (current_parsed_root->directory, ".", argc <= 1);
#ifdef SERVER_SUPPORT
/* We _always_ want to have a top-level admin
directory. If we're running in client/server mode,
send a "Clear-static-directory" command to make
sure it is created on the client side. (See 5.10
in cvsclient.dvi to convince yourself that this is
OK.) If this is a duplicate command being sent, it
will be ignored on the client side. */
if (server_active)
server_clear_entstat (".", current_parsed_root->directory);
#endif
}
/* Build dirs on the path if necessary and leave us in the
bottom directory (where if where was specified) doesn't
contain a CVS subdir yet, but all the others contain
CVS and Entries.Static files */
build_dir_state = build_dirs_and_chdir (head, argc <= 1);
if (build_dir_state < 0)
{
error (0, 0, "ignoring module %s", omodule);
err = 1;
goto out;
}
if(build_dir_state == 1) /* Stuff was ignored */
which |= W_FAKE;
}
/* set up the repository (or make sure the old one matches) */
if (!(which&W_FAKE) && !isfile (CVSADM))
{
FILE *fp;
if (!noexec && argc > 1)
{
/* I'm not sure whether this check is redundant. */
if (!isdir (mapped_repository))
error (1, 0, "there is no repository %s", repository);
Create_Admin (".", preload_update_dir, repository,
(char *) NULL, (char *) NULL, 0, 0);
if (server_active)
server_template (preload_update_dir, repository);
fp = open_file (CVSADM_ENTSTAT, "w+");
if (fclose(fp) == EOF)
error(1, errno, "cannot close %s", CVSADM_ENTSTAT);
#ifdef SERVER_SUPPORT
if (server_active)
server_set_entstat (preload_update_dir, repository);
#endif
}
else
{
/* I'm not sure whether this check is redundant. */
if (!isdir (mapped_repository))
error (1, 0, "there is no repository %s", repository);
Create_Admin (".", preload_update_dir, repository, tag, date,
/* FIXME? This is a guess. If it is important
for nonbranch to be set correctly here I
think we need to write it one way now and
then rewrite it later via WriteTag, once
we've had a chance to call RCS_nodeisbranch
on each file. */
0, 0);
if (server_active)
server_template (preload_update_dir, repository);
}
}
else if(!(which&W_FAKE))
{
char *repos;
if (m_type == EXPORT)
error (1, 0, "cannot export into working directory");
/* get the contents of the previously existing repository */
repos = Name_Repository ((char *) NULL, preload_update_dir);
xfree (repos);
if (server_active)
server_template (preload_update_dir, repository);
}
}
/*
* If we are going to be updating to stdout, we need to cd to the
* repository directory so the recursion processor can use the current
* directory as the place to find repository information
*/
if (pipeout)
{
if ( CVS_CHDIR (mapped_repository) < 0)
{
error (0, errno, "cannot chdir to %s", repository);
err = 1;
goto out;
}
which = W_REPOS;
if (tag != NULL && !tag_validated)
{
tag_check_valid (tag, argc - 1, argv + 1, 0, aflag, NULL);
tag_validated = 1;
}
}
else
{
if(which&W_FAKE)
which|=W_REPOS;
else
which |= W_LOCAL | W_REPOS;
if (tag != NULL && !tag_validated)
{
tag_check_valid (tag, argc - 1, argv + 1, 0, aflag,
repository);
tag_validated = 1;
}
}
if (! join_tags_validated)
{
if (join_rev1 != NULL)
tag_check_valid_join (join_rev1, argc - 1, argv + 1, 0, aflag,
repository);
if (join_rev2 != NULL)
tag_check_valid_join (join_rev2, argc - 1, argv + 1, 0, aflag,
repository);
join_tags_validated = 1;
}
/*
* if we are going to be recursive (building dirs), go ahead and call the
* update recursion processor. We will be recursive unless either local
* only was specified, or we were passed arguments
*/
if (!(local_specified || argc > 1))
{
if (m_type == CHECKOUT && !pipeout)
history_write ('O', preload_update_dir, history_name, where,
mapped_repository,NULL,NULL);
else if (m_type == EXPORT && !pipeout)
history_write ('E', preload_update_dir, tag ? tag : date, where,
mapped_repository,NULL,NULL);
err += do_update (0, (char **) NULL, options, tag, date,
force_tag_match, 0 /* !local */ ,
1 /* update -d */ , aflag, checkout_prune_dirs,
pipeout, which, join_rev1, join_rev2,
preload_update_dir, (char*)mapped_repository);
goto out;
}
if (!pipeout)
{
int i;
List *entries;
/* we are only doing files, so register them */
entries = Entries_Open (0, NULL);
for (i = 1; i < argc; i++)
{
char *line;
Vers_TS *vers;
struct file_info finfo;
memset (&finfo, 0, sizeof finfo);
finfo.file = argv[i];
/* Shouldn't be used, so set to arbitrary value. */
finfo.update_dir = NULL;
finfo.fullname = argv[i];
finfo.mapped_file = map_filename(repository, finfo.file, (const char **)&finfo.repository);
finfo.virtual_repository = repository;
finfo.entries = entries;
/* The rcs slot is needed to get the options from the RCS
file */
finfo.rcs = RCS_parse (finfo.mapped_file, finfo.repository);
vers = Version_TS (&finfo, options, tag, date, force_tag_match, 0, 0);
if (vers->ts_user == NULL)
{
line = (char*)xmalloc (strlen (finfo.file) + 15);
(void) sprintf (line, "Initial %s", fn_root(finfo.file));
Register (entries, finfo.file,
vers->vn_rcs ? vers->vn_rcs : "0",
line, vers->options, vers->tag,
vers->date, (char *) 0, NULL, NULL, vers->tt_rcs, vers->edit_revision, vers->edit_tag, vers->edit_bugid);
xfree (line);
}
freevers_ts (&vers);
freercsnode (&finfo.rcs);
}
Entries_Close (entries);
}
/* Don't log "export", just regular "checkouts" */
if (m_type == CHECKOUT && !pipeout)
history_write ('O', preload_update_dir, history_name, where,
mapped_repository,NULL,NULL);
/* go ahead and call update now that everything is set */
err += do_update (argc - 1, argv + 1, options, tag, date,
force_tag_match, local_specified, 1 /* update -d */,
aflag, checkout_prune_dirs, pipeout, which, join_rev1,
join_rev2, preload_update_dir, (char*)mapped_repository);
out:
xfree (preload_update_dir);
preload_update_dir = oldupdate;
xfree (where);
xfree (repository);
xfree (mapped_repository);
return (err);
}
static char *findslash (char *start, char *p)
{
for (;;)
{
if (ISDIRSEP(*p)) return p;
if (p == start) break;
--p;
}
return NULL;
}
/* Return a newly malloc'd string containing a pathname for CVSNULLREPOS,
and make sure that it exists. If there is an error creating the
directory, give a fatal error. Otherwise, the directory is guaranteed
to exist when we return. */
char *
emptydir_name ()
{
char *repository;
repository = (char*)xmalloc (strlen (current_parsed_root->directory)
+ sizeof (CVSROOTADM)
+ sizeof (CVSNULLREPOS)
+ 3);
(void) sprintf (repository, "%s/%s/%s", current_parsed_root->directory,
CVSROOTADM, CVSNULLREPOS);
if (!isfile (repository))
{
mode_t omask;
omask = umask (cvsumask);
if (CVS_MKDIR (repository, 0777) < 0)
error (1, errno, "cannot create %s", repository);
(void) umask (omask);
}
return repository;
}
/* Build all the dirs along the path to DIRS with CVS subdirs with appropriate
repositories. If ->repository is NULL, do not create a CVSADM directory
for that subdirectory; just CVS_CHDIR into it. */
static int build_dirs_and_chdir (struct dir_to_build *dirs, int sticky)
{
int retval = 0;
struct dir_to_build *nextdir;
while (dirs != NULL)
{
const char *dir = last_component (dirs->dirpath);
if(!*dir && strlen(dirs->dirpath)==3 && dirs->dirpath[1]==':')
dir=dirs->dirpath; /* drive:/ */
if (!dirs->just_chdir)
{
/* Do we always make directories? The client/server protocol doesn't handle this... */
/* In local mode, a 'co -n' will always create empty directories for the modules. There
doesn't seem to be a way around this with the current code. In client/server mode it
does the same but the client ignores it */
if(!noexec)
mkdir_if_needed (dir);
Subdir_Register(NULL, NULL, dir);
}
if (CVS_CHDIR (dir) < 0)
{
if(!noexec)
{
error (0, errno, "cannot chdir to %s", dir);
retval = -1;
goto out;
}
retval = 1;
}
if (dirs->repository != NULL)
{
build_one_dir (dirs->repository, dirs->dirpath, sticky);
xfree (dirs->repository);
}
nextdir = dirs->next;
xfree (dirs->dirpath);
xfree (dirs);
dirs = nextdir;
}
out:
while (dirs != NULL)
{
if (dirs->repository != NULL)
xfree (dirs->repository);
nextdir = dirs->next;
xfree (dirs->dirpath);
xfree (dirs);
dirs = nextdir;
}
return retval;
}
syntax highlighted by Code2HTML, v. 0.9.1