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
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
|
/* $OpenBSD: commit.c,v 1.49 2005/12/22 14:59:54 xsa Exp $ */
/*
* Copyright (c) 2004 Jean-Francois Brousseau <jfb@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 <sys/stat.h>
#include <errno.h>
#include <fcntl.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <unistd.h>
#include "buf.h"
#include "cvs.h"
#include "log.h"
#include "proto.h"
static int cvs_commit_init(struct cvs_cmd *, int, char **, int *);
static int cvs_commit_prepare(CVSFILE *, void *);
static int cvs_commit_remote(CVSFILE *, void *);
static int cvs_commit_local(CVSFILE *, void *);
static int cvs_commit_pre_exec(struct cvsroot *);
struct cvs_cmd cvs_cmd_commit = {
CVS_OP_COMMIT, CVS_REQ_CI, "commit",
{ "ci", "com" },
"Check files into the repository",
"[-flR] [-F logfile | -m msg] [-r rev] ...",
"F:flm:Rr:",
NULL,
CF_RECURSE | CF_IGNORE | CF_SORT,
cvs_commit_init,
cvs_commit_pre_exec,
cvs_commit_remote,
cvs_commit_local,
NULL,
NULL,
CVS_CMD_SENDDIR | CVS_CMD_ALLOWSPEC | CVS_CMD_SENDARGS2
};
static char *mfile = NULL;
static char *rev = NULL;
static char **commit_files = NULL;
static int commit_fcount = 0;
static int wantedstatus = 0;
static int
cvs_commit_init(struct cvs_cmd *cmd, int argc, char **argv, int *arg)
{
int ch;
while ((ch = getopt(argc, argv, cmd->cmd_opts)) != -1) {
switch (ch) {
case 'F':
mfile = optarg;
break;
case 'f':
/* XXX half-implemented */
cmd->file_flags &= ~CF_RECURSE;
break;
case 'l':
cmd->file_flags &= ~CF_RECURSE;
break;
case 'm':
cvs_msg = xstrdup(optarg);
break;
case 'R':
cmd->file_flags |= CF_RECURSE;
break;
case 'r':
rev = optarg;
break;
default:
return (CVS_EX_USAGE);
}
}
if ((cvs_msg != NULL) && (mfile != NULL)) {
cvs_log(LP_ERR, "the -F and -m flags are mutually exclusive");
return (CVS_EX_USAGE);
}
if (mfile != NULL)
cvs_msg = cvs_logmsg_open(mfile);
*arg = optind;
commit_files = (argv + optind);
commit_fcount = (argc - optind);
return (0);
}
int
cvs_commit_pre_exec(struct cvsroot *root)
{
CVSFILE *cfp;
CVSFILE *tmp;
int ret, i, flags = CF_RECURSE | CF_IGNORE | CF_SORT;
struct cvs_flist added, modified, removed, *cl[3];
int stattype[] = { CVS_FST_ADDED, CVS_FST_MODIFIED, CVS_FST_REMOVED };
SIMPLEQ_INIT(&added);
SIMPLEQ_INIT(&modified);
SIMPLEQ_INIT(&removed);
cl[0] = &added;
cl[1] = &modified;
cl[2] = &removed;
if ((tmp = cvs_file_loadinfo(".", CF_NOFILES, NULL, NULL, 1)) == NULL)
return (CVS_EX_DATA);
/*
* Obtain the file lists for the logmessage.
*/
for (i = 0; i < 3; i++) {
wantedstatus = stattype[i];
if (commit_fcount != 0) {
ret = cvs_file_getspec(commit_files, commit_fcount,
flags, cvs_commit_prepare, cl[i], NULL);
} else {
ret = cvs_file_get(".", flags, cvs_commit_prepare,
cl[i], NULL);
}
if (ret != CVS_EX_OK) {
cvs_file_free(tmp);
return (CVS_EX_DATA);
}
}
/*
* If we didn't catch any file, don't call the editor.
*/
if (SIMPLEQ_EMPTY(&added) && SIMPLEQ_EMPTY(&modified) &&
SIMPLEQ_EMPTY(&removed)) {
cvs_file_free(tmp);
return (0);
}
/*
* Fetch the log message for real, with all the files.
*/
if (cvs_msg == NULL)
cvs_msg = cvs_logmsg_get(tmp->cf_name, &added, &modified,
&removed);
cvs_file_free(tmp);
/* free the file lists */
for (i = 0; i < 3; i++) {
while (!SIMPLEQ_EMPTY(cl[i])) {
cfp = SIMPLEQ_FIRST(cl[i]);
SIMPLEQ_REMOVE_HEAD(cl[i], cf_list);
cvs_file_free(cfp);
}
}
if (cvs_msg == NULL)
return (CVS_EX_DATA);
if (root->cr_method != CVS_METHOD_LOCAL) {
if (cvs_logmsg_send(root, cvs_msg) < 0)
return (CVS_EX_PROTO);
if (rev != NULL) {
if ((cvs_sendarg(root, "-r", 0) < 0) ||
(cvs_sendarg(root, rev, 0) < 0))
return (CVS_EX_PROTO);
}
}
return (0);
}
/*
* cvs_commit_prepare()
*
* Examine the file <cf> to see if it will be part of the commit, in which
* case it gets added to the list passed as second argument.
*/
int
cvs_commit_prepare(CVSFILE *cf, void *arg)
{
CVSFILE *copy;
struct cvs_flist *clp = (struct cvs_flist *)arg;
if ((cf->cf_type == DT_REG) && (cf->cf_cvstat == wantedstatus)) {
copy = cvs_file_copy(cf);
if (copy == NULL)
return (CVS_EX_DATA);
SIMPLEQ_INSERT_TAIL(clp, copy, cf_list);
}
return (0);
}
/*
* cvs_commit_remote()
*
* Commit a single file.
*/
int
cvs_commit_remote(CVSFILE *cf, void *arg)
{
int ret;
char *repo, fpath[MAXPATHLEN];
RCSFILE *rf;
struct cvsroot *root;
ret = 0;
rf = NULL;
repo = NULL;
root = CVS_DIR_ROOT(cf);
if (cf->cf_type == DT_DIR) {
if (cf->cf_cvstat != CVS_FST_UNKNOWN) {
if (cvs_senddir(root, cf) < 0)
return (CVS_EX_PROTO);
}
return (0);
}
cvs_file_getpath(cf, fpath, sizeof(fpath));
if (cf->cf_parent != NULL)
repo = cf->cf_parent->cf_repo;
if ((cf->cf_cvstat == CVS_FST_ADDED) ||
(cf->cf_cvstat == CVS_FST_MODIFIED) ||
(cf->cf_cvstat == CVS_FST_REMOVED)) {
if (cvs_sendentry(root, cf) < 0) {
return (CVS_EX_PROTO);
}
/* if it's removed, don't bother sending a
* Modified request together with the file its
* contents.
*/
if (cf->cf_cvstat == CVS_FST_REMOVED)
return (0);
if (cvs_sendreq(root, CVS_REQ_MODIFIED, cf->cf_name) < 0)
return (CVS_EX_PROTO);
if (cvs_sendfile(root, fpath) < 0) {
return (CVS_EX_PROTO);
}
}
return (0);
}
static int
cvs_commit_local(CVSFILE *cf, void *arg)
{
char fpath[MAXPATHLEN], rcspath[MAXPATHLEN];
if (cf->cf_type == DT_DIR) {
if (verbosity > 1)
cvs_log(LP_NOTICE, "Examining %s", cf->cf_name);
return (0);
}
cvs_file_getpath(cf, fpath, sizeof(fpath));
cvs_rcs_getpath(cf, rcspath, sizeof(rcspath));
return (0);
}
|