1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265
|
/*
* cdc.cc: Part of GNU CSSC.
*
* Copyright (C) 1997,1998,1999,2001,2007,2008 Free Software Foundation, Inc.
*
* 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 3 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, see <http://www.gnu.org/licenses/>.
*
* CSSC was originally Based on MySC, by Ross Ridge, which was
* placed in the Public Domain.
*
* Changes the comments and MRs of a delta.
*
*/
#include "cssc.h"
#include "my-getopt.h"
#include "fileiter.h"
#include "sccsfile.h"
#include "sf-chkmr.h"
#include "version.h"
#include "delta.h"
#include "except.h"
const char main_rcs_id[] = "CSSC $Id: cdc.cc,v 1.28 2008/01/06 19:42:22 jay Exp $";
void
usage()
{
fprintf(stderr,
"usage: %s [-V] [-m MRs] [-y comments] -r SID file ...\n",
prg_name);
}
static const char *
plural(int n)
{
if (1 == n)
return "";
else
return "s";
}
int
main(int argc, char *argv[])
{
Cleaner arbitrary_name;
int c;
sid rid(sid::null_sid());
mystring mrs;
mystring comments;
int got_comments = 0;
int retval = 0;
if (argc > 0)
set_prg_name(argv[0]);
else
set_prg_name("cdc");
ASSERT(!rid.valid());
CSSC_Options opts(argc, argv, "r!m!y!V");
for (c = opts.next(); c != CSSC_Options::END_OF_ARGUMENTS; c = opts.next())
{
switch (c)
{
default:
errormsg("Unsupported option: '%c'", c);
return 2;
case 'r':
rid = sid(opts.getarg());
if (!rid.valid())
{
errormsg("Invaild SID: '%s'", opts.getarg());
return 2;
}
break;
case 'm':
mrs = opts.getarg();
break;
case 'y':
comments = opts.getarg();
got_comments = 1;
break;
case 'V':
version();
break;
}
}
if (!rid.valid())
{
errormsg("A SID must be specified on the command line.");
return 1;
}
sccs_file_iterator iter(opts);
if (! iter.using_source())
{
errormsg("No SCCS file specified.");
return 1;
}
if (!got_comments)
{
if (!iter.using_stdin())
{
comments = prompt_user("comments? ");
}
else
{
/* No -y option specified, but "-" was
* specified on the command line, so
* that's an error.
*/
errormsg("You can't use standard input for the argument list "
"without\n"
"using the \"-y\" option, because these two uses of "
"stdin are mutually\n"
"exclusive, sorry.");
return 1;
}
}
mylist<mystring> mr_list, comment_list;
comment_list = split_comments(comments);
mr_list = split_mrs(mrs);
int tossed_privileges = 0;
int first = 1;
while (iter.next())
{
#ifdef HAVE_EXCEPTIONS
try
{
#endif
sccs_name &name = iter.get_name();
sccs_file file(name, sccs_file::UPDATE);
// If we need an MR list, prompt if required.
if (first)
{
first = 0;
if (file.mr_required() && (0 == mr_list.length()) )
{
if (iter.using_stdin())
{
/* No -y option specified, but "-" was
* specified on the command line, so
* that's an error.
*/
errormsg("You can't use standard input for argument list "
"without using the \"-y\" and \"-m\" options, "
"because\nthese two uses of stdin are mutually"
" exclusive, sorry.");
return 1;
}
else
{
mrs = prompt_user("MRs? ");
mr_list = split_mrs(mrs);
}
}
}
if (mr_list.length() != 0)
{
if (file.mr_required())
{
if (file.check_mrs(mr_list))
{
errormsg("%s: Invalid MR number%s -- validation failed..",
plural(mr_list.length()), name.c_str());
retval = 1;
continue; // with next file.
}
}
else
{
/* No MRs required; it is in this case an error to provide them! */
errormsg("%s: MRs are not allowed for this file "
"(because its 'v' flag is not set).",
name.c_str());
retval = 1;
continue; // with next file...
}
}
else
{
if (file.mr_required())
{
errormsg("%s: MRs required.", name.c_str());
retval = 1;
continue;
}
}
if (!file.is_delta_creator(get_user_name(), rid))
{
give_up_privileges();
tossed_privileges = 1;
}
if (file.cdc(rid, mr_list, comment_list))
{
if (!file.update())
retval = 1;
}
else
{
retval = 1;
}
if (tossed_privileges)
{
restore_privileges();
tossed_privileges = 0;
}
#ifdef HAVE_EXCEPTIONS
}
catch (CsscExitvalException e)
{
if (tossed_privileges)
{
restore_privileges();
tossed_privileges = 0;
}
if (e.exitval > retval)
retval = e.exitval;
}
#endif
}
return retval;
}
// Explicit template instantiations.
template class mylist<mystring>;
template class mylist<seq_no>;
template class mylist<delta>;
template class range_list<release>;
template class mylist<const char*>;
template mylist<mystring>& operator+=(mylist<mystring> &, mylist<mystring> const &);
template mylist<mystring>& operator-=(mylist<mystring> &, mylist<mystring> const &);
/* Local variables: */
/* mode: c++ */
/* End: */
|