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
|
/* $OpenBSD: hist.c,v 1.12 2005/12/10 20:27:45 joris 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/stat.h>
#include <fcntl.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <unistd.h>
#include "cvs.h"
#include "log.h"
#define CVS_HIST_BUFSIZE 8192
static int cvs_hist_fillbuf(CVSHIST *);
static int cvs_hist_fmt(const struct cvs_hent *, char *, size_t);
/*
* cvs_hist_open()
*
* Open a CVS history file.
* Returns the number of entries in the file on success, or -1 on error.
*/
CVSHIST *
cvs_hist_open(const char *path)
{
CVSHIST *histp;
histp = (CVSHIST *)xmalloc(sizeof(*histp));
memset(histp, 0, sizeof(*histp));
histp->chf_buf = (char *)xmalloc((size_t)CVS_HIST_BUFSIZE);
histp->chf_blen = CVS_HIST_BUFSIZE;
histp->chf_off = 0;
histp->chf_sindex = 0;
histp->chf_cindex = 0;
histp->chf_nbhent = 0;
cvs_log(LP_TRACE, "cvs_hist_open(%s)", path);
histp->chf_fd = open(path, O_RDONLY, 0);
if (histp->chf_fd == -1) {
cvs_log(LP_ERRNO,
"failed to open CVS history file `%s'", path);
cvs_nolog = 1;
xfree(histp->chf_buf);
xfree(histp);
return (NULL);
}
cvs_hist_fillbuf(histp);
return (histp);
}
/*
* cvs_hist_close()
*
* Close the CVS history file previously opened by a call to cvs_hist_open()
*/
void
cvs_hist_close(CVSHIST *histp)
{
if (histp->chf_fd >= 0)
(void)close(histp->chf_fd);
xfree(histp->chf_buf);
xfree(histp);
}
/*
* cvs_hist_getnext()
*
* Get the next entry from the history file <histp>. Whenever using this
* function, it should be assumed that the return value of the previous call
* to cvs_hist_getnext() is now invalid.
* Returns the next entry from the file on success, or NULL on failure or if
* no entries are left.
*/
struct cvs_hent *
cvs_hist_getnext(CVSHIST *histp)
{
if (histp->chf_cindex == histp->chf_nbhent) {
/* no more cached entries, refill buf and parse */
cvs_hist_fillbuf(histp);
cvs_hist_parse(histp);
}
return (&(histp->chf_hent[histp->chf_cindex++]));
}
/*
* cvs_hist_append()
*
* Append a history entry to the history file <histp>. The file offset is
* first set to the end of the file.
* Returns 0 on success, or -1 on failure.
*/
int
cvs_hist_append(CVSHIST *histp, struct cvs_hent *hentp)
{
char hbuf[128];
if (cvs_nolog == 1)
return (0);
if (cvs_hist_fmt(hentp, hbuf, sizeof(hbuf)) < 0) {
cvs_log(LP_ERR, "failed to append CVS history entry");
return (-1);
}
/* position ourself at the end */
if (lseek(histp->chf_fd, (off_t)0, SEEK_END) == -1) {
cvs_log(LP_ERRNO, "failed to seek to end of CVS history file");
return (-1);
}
if (write(histp->chf_fd, hbuf, strlen(hbuf)) == -1) {
cvs_log(LP_ERR, "failed to write CVS history entry to file");
return (-1);
}
return (0);
}
/*
* cvs_hist_fillbuf()
*
* Fill the history file's internal buffer for future parsing.
*/
static int
cvs_hist_fillbuf(CVSHIST *histp)
{
ssize_t ret;
/* reposition ourself in case we're missing the start of a record */
if (lseek(histp->chf_fd, histp->chf_off, SEEK_SET) == -1) {
cvs_log(LP_ERRNO, "failed to seek in CVS history file");
return (-1);
}
ret = read(histp->chf_fd, histp->chf_buf, histp->chf_blen);
if (ret == -1) {
cvs_log(LP_ERRNO, "failed to buffer CVS history file");
return (-1);
} else {
histp->chf_bused = (size_t)ret;
}
return (ret);
}
/*
* cvs_hist_parse()
*
* Parse the current contents of the internal buffer of <histp> and regenerate
* the buffered history entries.
* Returns the number of entries parsed on success, or -1 on failure.
*/
int
cvs_hist_parse(CVSHIST *histp)
{
u_int i, fld;
char *fields[CVS_HIST_NBFLD], *sp, *bep, *ep, *errp;
sp = histp->chf_buf;
bep = histp->chf_buf + histp->chf_bused - 1;
for (i = 0; i < CVS_HIST_CACHE; i++) {
ep = memchr(sp, '\n', bep - sp);
if (ep == NULL) {
/*
* No record or incomplete record left to parse,
* so adjust the next read offset in consequence.
*/
histp->chf_off += (off_t)(sp - histp->chf_buf);
break;
} else if (ep == bep) {
histp->chf_off += (off_t)histp->chf_bused;
}
*(ep++) = '\0';
printf("hist(%s)\n", sp);
histp->chf_hent[i].ch_event = *sp++;
/* split the record in fields */
fields[0] = sp;
fld = 1;
while (sp < ep) {
if (*sp == '|') {
*sp = '\0';
fields[fld++] = sp + 1;
}
if (fld == CVS_HIST_NBFLD)
break;
sp++;
}
#if 0
for (fld = 0; fld < CVS_HIST_NBFLD; fld++)
printf("fields[%u] = `%s'\n", fld, fields[fld]);
#endif
histp->chf_hent[i].ch_date = (time_t)strtol(fields[0],
&errp, 16);
if (*errp != '\0') {
cvs_log(LP_ERR,
"parse error in date field of CVS history entry");
continue;
}
histp->chf_hent[i].ch_user = fields[1];
histp->chf_hent[i].ch_curdir = fields[2];
histp->chf_hent[i].ch_repo = fields[3];
histp->chf_hent[i].ch_rev = rcsnum_alloc();
rcsnum_aton(fields[4], NULL, histp->chf_hent[i].ch_rev);
histp->chf_hent[i].ch_arg = fields[5];
sp = ep;
}
/* update indexes */
histp->chf_sindex += histp->chf_nbhent;
histp->chf_nbhent = i;
histp->chf_cindex = 0;
return (i);
}
/*
* cvs_hist_fmt()
*
* Format the contents of the CVS history entry <ent> into the format used in
* the CVS `history' file, and store the resulting string in <buf>, which is
* of size <blen>.
*/
static int
cvs_hist_fmt(const struct cvs_hent *ent, char *buf, size_t blen)
{
char numbuf[64];
int len;
if (rcsnum_tostr(ent->ch_rev, numbuf, sizeof(numbuf)) == NULL)
return (-1);
len = snprintf(buf, blen, "%c%8x|%s|%s|%s|%s|%s",
ent->ch_event, ent->ch_date, ent->ch_user, ent->ch_curdir,
ent->ch_repo, numbuf, ent->ch_arg);
if (len >= (int)blen || len == -1)
return (-1);
return (len);
}
|