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

Annotation of src/usr.bin/cvs/getlog.c, Revision 1.9

1.9     ! deraadt     1: /*     $OpenBSD: getlog.c,v 1.8 2004/12/06 03:13:52 jfb Exp $  */
1.1       jfb         2: /*
                      3:  * Copyright (c) 2004 Jean-Francois Brousseau <jfb@openbsd.org>
                      4:  * All rights reserved.
                      5:  *
                      6:  * Redistribution and use in source and binary forms, with or without
                      7:  * modification, are permitted provided that the following conditions
                      8:  * are met:
                      9:  *
                     10:  * 1. Redistributions of source code must retain the above copyright
                     11:  *    notice, this list of conditions and the following disclaimer.
                     12:  * 2. The name of the author may not be used to endorse or promote products
                     13:  *    derived from this software without specific prior written permission.
                     14:  *
                     15:  * THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES,
                     16:  * INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY
                     17:  * AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL
                     18:  * THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
                     19:  * EXEMPLARY, OR CONSEQUENTIAL  DAMAGES (INCLUDING, BUT NOT LIMITED TO,
                     20:  * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS;
                     21:  * OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
                     22:  * WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR
                     23:  * OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
                     24:  * ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
                     25:  */
                     26:
                     27: #include <sys/param.h>
                     28:
                     29: #include <stdlib.h>
                     30: #include <stdio.h>
                     31: #include <unistd.h>
                     32: #include <errno.h>
                     33: #include <string.h>
                     34: #include <paths.h>
                     35: #include <sysexits.h>
                     36:
                     37: #include "cvs.h"
                     38: #include "log.h"
1.6       jfb        39: #include "file.h"
1.3       jfb        40: #include "proto.h"
1.1       jfb        41:
                     42:
                     43: #define CVS_GLOG_RFONLY    0x01
                     44: #define CVS_GLOG_HDONLY    0x02
                     45:
                     46:
                     47: #define CVS_GETLOG_REVSEP   "----------------------------"
                     48: #define CVS_GETLOG_REVEND \
                     49:  "============================================================================="
                     50:
1.8       jfb        51: #ifdef notyet
1.1       jfb        52: static void cvs_getlog_print   (const char *, RCSFILE *, u_int);
1.8       jfb        53: #endif
1.6       jfb        54: static int  cvs_getlog_file    (CVSFILE *, void *);
1.1       jfb        55:
                     56:
                     57:
                     58: /*
                     59:  * cvs_getlog()
                     60:  *
                     61:  * Implement the `cvs log' command.
                     62:  */
                     63:
                     64: int
                     65: cvs_getlog(int argc, char **argv)
                     66: {
1.5       jfb        67:        int i, rfonly, honly, flags;
1.6       jfb        68:        struct cvsroot *root;
1.1       jfb        69:
1.5       jfb        70:        flags = CF_RECURSE;
1.1       jfb        71:        rfonly = 0;
                     72:        honly = 0;
                     73:
                     74:        while ((i = getopt(argc, argv, "d:hlRr:")) != -1) {
                     75:                switch (i) {
                     76:                case 'd':
                     77:                        break;
                     78:                case 'h':
                     79:                        honly = 1;
                     80:                        break;
                     81:                case 'l':
1.5       jfb        82:                        flags &= ~CF_RECURSE;
1.1       jfb        83:                        break;
                     84:                case 'R':
                     85:                        rfonly = 1;
                     86:                        break;
                     87:                case 'r':
                     88:                        break;
                     89:                default:
                     90:                        return (EX_USAGE);
                     91:                }
                     92:        }
                     93:
                     94:        argc -= optind;
                     95:        argv += optind;
                     96:
1.4       jfb        97:        if (argc == 0) {
1.5       jfb        98:                cvs_files = cvs_file_get(".", flags);
1.9     ! deraadt    99:        } else {
1.5       jfb       100:                cvs_files = cvs_file_getspec(argv, argc, flags);
1.1       jfb       101:        }
1.5       jfb       102:        if (cvs_files == NULL)
                    103:                return (EX_DATAERR);
1.1       jfb       104:
1.6       jfb       105:        cvs_file_examine(cvs_files, cvs_getlog_file, NULL);
                    106:
                    107:        root = cvs_files->cf_ddat->cd_root;
                    108:        if (root->cr_method != CVS_METHOD_LOCAL) {
                    109:                cvs_senddir(root, cvs_files);
                    110:                if (argc > 0) {
                    111:                        for (i = 0; i < argc; i++)
                    112:                                cvs_sendarg(root, argv[i], 0);
                    113:                }
                    114:                cvs_sendreq(root, CVS_REQ_LOG, NULL);
                    115:        }
                    116:
1.1       jfb       117:        return (0);
                    118: }
                    119:
                    120:
1.6       jfb       121: /*
                    122:  * cvs_getlog_file()
                    123:  *
                    124:  * Diff a single file.
                    125:  */
                    126:
                    127: static int
                    128: cvs_getlog_file(CVSFILE *cf, void *arg)
                    129: {
1.7       jfb       130:        char *repo, fpath[MAXPATHLEN];
1.6       jfb       131:        RCSFILE *rf;
                    132:        struct cvsroot *root;
                    133:        struct cvs_ent *entp;
                    134:
1.7       jfb       135:        cvs_file_getpath(cf, fpath, sizeof(fpath));
                    136:
1.6       jfb       137:        if (cf->cf_type == DT_DIR) {
                    138:                if (cf->cf_cvstat == CVS_FST_UNKNOWN) {
                    139:                        root = cf->cf_parent->cf_ddat->cd_root;
1.7       jfb       140:                        cvs_sendreq(root, CVS_REQ_QUESTIONABLE,
                    141:                            CVS_FILE_NAME(cf));
1.9     ! deraadt   142:                } else {
1.6       jfb       143:                        root = cf->cf_ddat->cd_root;
                    144:                        if ((cf->cf_parent == NULL) ||
                    145:                            (root != cf->cf_parent->cf_ddat->cd_root)) {
                    146:                                cvs_connect(root);
                    147:                        }
                    148:
                    149:                        cvs_senddir(root, cf);
                    150:                }
                    151:
                    152:                return (0);
1.9     ! deraadt   153:        } else
1.6       jfb       154:                root = cf->cf_parent->cf_ddat->cd_root;
                    155:
                    156:        rf = NULL;
                    157:        if (cf->cf_parent != NULL) {
                    158:                repo = cf->cf_parent->cf_ddat->cd_repo;
1.9     ! deraadt   159:        } else {
1.6       jfb       160:                repo = NULL;
                    161:        }
                    162:
                    163:        if (cf->cf_cvstat == CVS_FST_UNKNOWN) {
                    164:                if (root->cr_method == CVS_METHOD_LOCAL)
1.7       jfb       165:                        cvs_printf("? %s\n", fpath);
1.6       jfb       166:                else
1.7       jfb       167:                        cvs_sendreq(root, CVS_REQ_QUESTIONABLE,
                    168:                            CVS_FILE_NAME(cf));
1.6       jfb       169:                return (0);
                    170:        }
                    171:
1.7       jfb       172:        entp = cvs_ent_getent(fpath);
1.6       jfb       173:        if (entp == NULL)
                    174:                return (-1);
                    175:
                    176:        if ((root->cr_method != CVS_METHOD_LOCAL) &&
                    177:            (cvs_sendentry(root, entp) < 0)) {
                    178:                cvs_ent_free(entp);
                    179:                return (-1);
                    180:        }
                    181:
                    182:        if (root->cr_method != CVS_METHOD_LOCAL) {
                    183:                switch (cf->cf_cvstat) {
                    184:                case CVS_FST_UPTODATE:
1.7       jfb       185:                        cvs_sendreq(root, CVS_REQ_UNCHANGED, CVS_FILE_NAME(cf));
1.6       jfb       186:                        break;
                    187:                case CVS_FST_ADDED:
                    188:                case CVS_FST_MODIFIED:
1.7       jfb       189:                        cvs_sendreq(root, CVS_REQ_ISMODIFIED,
                    190:                            CVS_FILE_NAME(cf));
1.6       jfb       191:                        break;
                    192:                default:
                    193:                        return (-1);
                    194:                }
                    195:
                    196:                cvs_ent_free(entp);
                    197:                return (0);
                    198:        }
1.5       jfb       199:
1.7       jfb       200:        snprintf(fpath, sizeof(fpath), "%s/%s/%s%s",
                    201:            root->cr_dir, repo, fpath, RCS_FILE_EXT);
1.5       jfb       202:
1.7       jfb       203:        rf = rcs_open(fpath, RCS_MODE_READ);
1.6       jfb       204:        if (rf == NULL) {
                    205:                cvs_ent_free(entp);
                    206:                return (-1);
                    207:        }
                    208:
                    209:        rcs_close(rf);
                    210:        cvs_ent_free(entp);
                    211:        return (0);
                    212: }
1.5       jfb       213:
                    214: #ifdef notyet
1.1       jfb       215: static void
                    216: cvs_getlog_print(const char *file, RCSFILE *rfp, u_int flags)
                    217: {
                    218:        char numbuf[64], datebuf[64], *sp;
                    219:        struct rcs_delta *rdp;
                    220:
1.6       jfb       221:        cvs_printf("RCS file: %s\nWorking file: %s\n",
1.1       jfb       222:            rfp->rf_path, file);
1.6       jfb       223:        cvs_printf("Working file: %s\n", (char *)NULL);
                    224:        cvs_printf("head: %s\nbranch:\nlocks:\naccess list:\n");
                    225:        cvs_printf("symbolic names:\nkeyword substitutions:\n");
                    226:        cvs_printf("total revisions: %u;\tselected revisions: %u\n", 1, 1);
1.1       jfb       227:
1.6       jfb       228:        cvs_printf("description:\n");
1.1       jfb       229:
                    230:        for (;;) {
1.6       jfb       231:                cvs_printf(CVS_GETLOG_REVSEP "\n");
1.5       jfb       232:                rcsnum_tostr(rdp->rd_num, numbuf, sizeof(numbuf));
1.6       jfb       233:                cvs_printf("revision %s\n", numbuf);
                    234:                cvs_printf("date: %d/%02d/%d %02d:%02d:%02d;  author: %s;"
1.1       jfb       235:                    "  state: %s;  lines:",
                    236:                    rdp->rd_date.tm_year, rdp->rd_date.tm_mon + 1,
                    237:                    rdp->rd_date.tm_mday, rdp->rd_date.tm_hour,
                    238:                    rdp->rd_date.tm_min, rdp->rd_date.tm_sec,
                    239:                    rdp->rd_author, rdp->rd_state);
                    240:        }
                    241:
1.6       jfb       242:        cvs_printf(CVS_GETLOG_REVEND "\n");
1.1       jfb       243: }
1.5       jfb       244: #endif