[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.80

1.80    ! tobias      1: /*     $OpenBSD: getlog.c,v 1.79 2008/01/10 11:25:27 tobias Exp $      */
1.1       jfb         2: /*
1.66      xsa         3:  * Copyright (c) 2005, 2006 Xavier Santolaria <xsa@openbsd.org>
1.57      joris       4:  * Copyright (c) 2006 Joris Vink <joris@openbsd.org>
1.1       jfb         5:  *
1.57      joris       6:  * Permission to use, copy, modify, and distribute this software for any
                      7:  * purpose with or without fee is hereby granted, provided that the above
                      8:  * copyright notice and this permission notice appear in all copies.
1.1       jfb         9:  *
1.57      joris      10:  * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
                     11:  * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
                     12:  * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
                     13:  * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
                     14:  * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
                     15:  * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
                     16:  * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
1.1       jfb        17:  */
                     18:
1.71      otto       19: #include <unistd.h>
                     20: #include <string.h>
1.72      niallo     21: #include <errno.h>
1.1       jfb        22:
                     23: #include "cvs.h"
1.65      joris      24: #include "remote.h"
1.1       jfb        25:
1.66      xsa        26: #define L_HEAD         0x01
                     27: #define L_HEAD_DESCR   0x02
                     28: #define L_NAME         0x04
                     29: #define L_NOTAGS       0x08
1.67      xsa        30: #define L_LOGINS       0x10
                     31: #define L_STATES       0x20
1.66      xsa        32:
1.57      joris      33: void   cvs_log_local(struct cvs_file *);
                     34:
1.67      xsa        35: static void    log_rev_print(struct rcs_delta *);
                     36:
1.66      xsa        37: int     runflags = 0;
1.57      joris      38: char   *logrev = NULL;
1.67      xsa        39: char   *slist = NULL;
                     40: char   *wlist = NULL;
1.1       jfb        41:
1.29      jfb        42: struct cvs_cmd cvs_cmd_log = {
1.63      joris      43:        CVS_OP_LOG, 0, "log",
1.29      jfb        44:        { "lo" },
                     45:        "Print out history information for files",
                     46:        "[-bhlNRt] [-d dates] [-r revisions] [-s states] [-w logins]",
1.68      xsa        47:        "bd:hlNRr:s:tw:",
1.29      jfb        48:        NULL,
1.57      joris      49:        cvs_getlog
1.16      joris      50: };
                     51:
1.72      niallo     52: struct cvs_cmd cvs_cmd_rlog = {
                     53:        CVS_OP_RLOG, 0, "rlog",
                     54:        { "rlo" },
                     55:        "Print out history information for files",
                     56:        "[-bhlNRt] [-d dates] [-r revisions] [-s states] [-w logins]",
                     57:        "bd:hlNRr:s:tw:",
                     58:        NULL,
                     59:        cvs_getlog
                     60: };
                     61:
1.57      joris      62: int
                     63: cvs_getlog(int argc, char **argv)
1.1       jfb        64: {
1.79      tobias     65:        int ch, flags, i;
1.57      joris      66:        char *arg = ".";
                     67:        struct cvs_recursion cr;
1.1       jfb        68:
1.57      joris      69:        rcsnum_flags |= RCSNUM_NO_MAGIC;
                     70:        flags = CR_RECURSE_DIRS;
                     71:
                     72:        while ((ch = getopt(argc, argv, cvs_cmd_log.cmd_opts)) != -1) {
1.16      joris      73:                switch (ch) {
1.66      xsa        74:                case 'h':
                     75:                        runflags |= L_HEAD;
                     76:                        break;
1.1       jfb        77:                case 'l':
1.57      joris      78:                        flags &= ~CR_RECURSE_DIRS;
1.1       jfb        79:                        break;
1.66      xsa        80:                case 'N':
                     81:                        runflags |= L_NOTAGS;
                     82:                        break;
                     83:                case 'R':
                     84:                        runflags |= L_NAME;
1.80    ! tobias     85:                        break;
1.1       jfb        86:                case 'r':
1.57      joris      87:                        logrev = optarg;
1.25      xsa        88:                        break;
1.67      xsa        89:                case 's':
                     90:                        runflags |= L_STATES;
                     91:                        slist = optarg;
                     92:                        break;
1.66      xsa        93:                case 't':
                     94:                        runflags |= L_HEAD_DESCR;
                     95:                        break;
1.67      xsa        96:                case 'w':
                     97:                        runflags |= L_LOGINS;
                     98:                        wlist = optarg;
                     99:                        break;
1.1       jfb       100:                default:
1.57      joris     101:                        fatal("%s", cvs_cmd_log.cmd_synopsis);
1.1       jfb       102:                }
                    103:        }
                    104:
1.57      joris     105:        argc -= optind;
                    106:        argv += optind;
1.6       jfb       107:
1.79      tobias    108:        if (cvs_cmdop == CVS_OP_RLOG) {
                    109:                if (argc == 0)
                    110:                        return 0;
                    111:
                    112:                for (i = 0; i < argc; i++)
                    113:                        if (argv[i][0] == '/')
                    114:                                fatal("Absolute path name is invalid: %s",
                    115:                                    argv[i]);
                    116:        }
                    117:
1.57      joris     118:        cr.enterdir = NULL;
                    119:        cr.leavedir = NULL;
1.65      joris     120:
                    121:        if (current_cvsroot->cr_method != CVS_METHOD_LOCAL) {
1.69      joris     122:                cvs_client_connect_to_server();
1.65      joris     123:                cr.fileproc = cvs_client_sendfile;
                    124:
1.66      xsa       125:                if (runflags & L_HEAD)
                    126:                        cvs_client_send_request("Argument -h");
                    127:
1.65      joris     128:                if (!(flags & CR_RECURSE_DIRS))
                    129:                        cvs_client_send_request("Argument -l");
                    130:
1.66      xsa       131:                if (runflags & L_NOTAGS)
                    132:                        cvs_client_send_request("Argument -N");
                    133:
                    134:                if (runflags & L_NAME)
                    135:                        cvs_client_send_request("Argument -R");
                    136:
1.65      joris     137:                if (logrev != NULL)
                    138:                        cvs_client_send_request("Argument -r%s", logrev);
1.66      xsa       139:
1.67      xsa       140:                if (runflags & L_STATES)
                    141:                        cvs_client_send_request("Argument -s%s", slist);
                    142:
1.66      xsa       143:                if (runflags & L_HEAD_DESCR)
                    144:                        cvs_client_send_request("Argument -t");
1.67      xsa       145:
                    146:                if (runflags & L_LOGINS)
                    147:                        cvs_client_send_request("Argument -w%s", wlist);
1.65      joris     148:        } else {
1.75      xsa       149:                if (cvs_cmdop == CVS_OP_RLOG &&
1.72      niallo    150:                    chdir(current_cvsroot->cr_dir) == -1)
1.76      xsa       151:                        fatal("cvs_getlog: %s", strerror(errno));
1.72      niallo    152:
1.65      joris     153:                cr.fileproc = cvs_log_local;
                    154:        }
                    155:
1.57      joris     156:        cr.flags = flags;
                    157:
1.79      tobias    158:        if (cvs_cmdop == CVS_OP_LOG ||
                    159:            current_cvsroot->cr_method == CVS_METHOD_LOCAL) {
                    160:                if (argc > 0)
                    161:                        cvs_file_run(argc, argv, &cr);
                    162:                else
                    163:                        cvs_file_run(1, &arg, &cr);
                    164:        }
1.5       jfb       165:
1.65      joris     166:        if (current_cvsroot->cr_method != CVS_METHOD_LOCAL) {
                    167:                cvs_client_send_files(argv, argc);
                    168:                cvs_client_senddir(".");
1.75      xsa       169:
                    170:                cvs_client_send_request((cvs_cmdop == CVS_OP_RLOG) ?
                    171:                    "rlog" : "log");
                    172:
1.65      joris     173:                cvs_client_get_responses();
                    174:        }
                    175:
1.49      joris     176:        return (0);
1.6       jfb       177: }
1.5       jfb       178:
1.57      joris     179: void
                    180: cvs_log_local(struct cvs_file *cf)
1.1       jfb       181: {
1.57      joris     182:        u_int nrev;
1.20      jfb       183:        struct rcs_sym *sym;
1.57      joris     184:        struct rcs_lock *lkp;
1.1       jfb       185:        struct rcs_delta *rdp;
1.21      jfb       186:        struct rcs_access *acp;
1.73      xsa       187:        char numb[CVS_REV_BUFSZ];
1.60      joris     188:
                    189:        cvs_log(LP_TRACE, "cvs_log_local(%s)", cf->file_path);
1.20      jfb       190:
1.78      joris     191:        cvs_file_classify(cf, cvs_directory_tag);
1.39      xsa       192:
1.57      joris     193:        if (cf->file_status == FILE_UNKNOWN) {
1.79      tobias    194:                if (verbosity > 0 && cvs_cmdop != CVS_OP_RLOG)
1.57      joris     195:                        cvs_log(LP_ERR, "nothing known about %s",
                    196:                            cf->file_path);
                    197:                return;
                    198:        } else if (cf->file_status == FILE_ADDED) {
1.39      xsa       199:                if (verbosity > 0)
1.62      david     200:                        cvs_log(LP_ERR, "%s has been added, but not committed",
1.57      joris     201:                            cf->file_path);
1.59      joris     202:                return;
                    203:        }
                    204:
                    205:        if (cf->file_type == CVS_DIR) {
                    206:                if (verbosity > 1)
                    207:                        cvs_log(LP_NOTICE, "Logging %s", cf->file_path);
1.57      joris     208:                return;
1.39      xsa       209:        }
                    210:
1.66      xsa       211:        if (runflags & L_NAME) {
                    212:                cvs_printf("%s\n", cf->file_rpath);
                    213:                return;
                    214:        }
                    215:
1.65      joris     216:        cvs_printf("\nRCS file: %s", cf->file_rpath);
1.74      xsa       217:
                    218:        if (cvs_cmdop != CVS_OP_RLOG)
                    219:                cvs_printf("\nWorking file: %s", cf->file_path);
                    220:
1.65      joris     221:        cvs_printf("\nhead:");
1.57      joris     222:        if (cf->file_rcs->rf_head != NULL)
1.65      joris     223:                cvs_printf(" %s", rcsnum_tostr(cf->file_rcs->rf_head,
1.57      joris     224:                    numb, sizeof(numb)));
                    225:
1.65      joris     226:        cvs_printf("\nbranch:");
1.57      joris     227:        if (rcs_branch_get(cf->file_rcs) != NULL) {
1.65      joris     228:                cvs_printf(" %s", rcsnum_tostr(rcs_branch_get(cf->file_rcs),
1.57      joris     229:                    numb, sizeof(numb)));
1.20      jfb       230:        }
1.1       jfb       231:
1.65      joris     232:        cvs_printf("\nlocks: %s", (cf->file_rcs->rf_flags & RCS_SLOCK)
1.57      joris     233:            ? "strict" : "");
                    234:        TAILQ_FOREACH(lkp, &(cf->file_rcs->rf_locks), rl_list)
1.65      joris     235:                cvs_printf("\n\t%s: %s", lkp->rl_name,
1.57      joris     236:                    rcsnum_tostr(lkp->rl_num, numb, sizeof(numb)));
1.20      jfb       237:
1.65      joris     238:        cvs_printf("\naccess list:\n");
1.57      joris     239:        TAILQ_FOREACH(acp, &(cf->file_rcs->rf_access), ra_list)
1.65      joris     240:                cvs_printf("\t%s\n", acp->ra_name);
1.20      jfb       241:
1.66      xsa       242:        if (!(runflags & L_NOTAGS)) {
                    243:                cvs_printf("symbolic names:\n");
                    244:                TAILQ_FOREACH(sym, &(cf->file_rcs->rf_symbols), rs_list) {
                    245:                        cvs_printf("\t%s: %s\n", sym->rs_name,
                    246:                            rcsnum_tostr(sym->rs_num, numb, sizeof(numb)));
                    247:                }
1.21      jfb       248:        }
                    249:
1.65      joris     250:        cvs_printf("keyword substitution: %s\n",
1.57      joris     251:            cf->file_rcs->rf_expand == NULL ? "kv" : cf->file_rcs->rf_expand);
                    252:
1.65      joris     253:        cvs_printf("total revisions: %u", cf->file_rcs->rf_ndelta);
1.20      jfb       254:
1.57      joris     255:        if (logrev != NULL)
1.58      joris     256:                nrev = cvs_revision_select(cf->file_rcs, logrev);
1.57      joris     257:        else
                    258:                nrev = cf->file_rcs->rf_ndelta;
1.21      jfb       259:
1.66      xsa       260:        if (cf->file_rcs->rf_head != NULL &&
                    261:            !(runflags & L_HEAD) && !(runflags & L_HEAD_DESCR))
                    262:                cvs_printf(";\tselected revisions: %u", nrev);
                    263:
1.65      joris     264:        cvs_printf("\n");
1.1       jfb       265:
1.66      xsa       266:        if (!(runflags & L_HEAD) || (runflags & L_HEAD_DESCR))
                    267:                cvs_printf("description:\n%s", cf->file_rcs->rf_desc);
                    268:
                    269:        if (!(runflags & L_HEAD) && !(runflags & L_HEAD_DESCR)) {
                    270:                TAILQ_FOREACH(rdp, &(cf->file_rcs->rf_delta), rd_list) {
1.67      xsa       271:                        /*
                    272:                         * if selections are enabled verify that entry is
                    273:                         * selected.
                    274:                         */
                    275:                        if (logrev == NULL || (rdp->rd_flags & RCS_RD_SELECT))
                    276:                                log_rev_print(rdp);
1.66      xsa       277:                }
1.57      joris     278:        }
1.20      jfb       279:
1.65      joris     280:        cvs_printf("%s\n", LOG_REVEND);
1.67      xsa       281: }
                    282:
                    283: static void
                    284: log_rev_print(struct rcs_delta *rdp)
                    285: {
                    286:        int i, found;
1.73      xsa       287:        char numb[CVS_REV_BUFSZ], timeb[CVS_TIME_BUFSZ];
1.67      xsa       288:        struct cvs_argvector *sargv, *wargv;
                    289:
                    290:        i = found = 0;
                    291:
                    292:        /* -s states */
                    293:        if (runflags & L_STATES) {
                    294:                sargv = cvs_strsplit(slist, ",");
                    295:                for (i = 0; sargv->argv[i] != NULL; i++) {
                    296:                        if (strcmp(rdp->rd_state, sargv->argv[i]) == 0) {
                    297:                                found++;
                    298:                                break;
                    299:                        }
                    300:                        found = 0;
                    301:                }
                    302:                cvs_argv_destroy(sargv);
                    303:        }
                    304:
                    305:        /* -w[logins] */
                    306:        if (runflags & L_LOGINS) {
                    307:                wargv = cvs_strsplit(wlist, ",");
                    308:                for (i = 0; wargv->argv[i] != NULL; i++) {
                    309:                        if (strcmp(rdp->rd_author, wargv->argv[i]) == 0) {
                    310:                                found++;
                    311:                                break;
                    312:                        }
                    313:                        found = 0;
                    314:                }
                    315:                cvs_argv_destroy(wargv);
                    316:        }
                    317:
1.68      xsa       318:        if ((runflags & (L_STATES|L_LOGINS)) && found == 0)
1.67      xsa       319:                return;
                    320:
                    321:        cvs_printf("%s\n", LOG_REVSEP);
                    322:
                    323:        rcsnum_tostr(rdp->rd_num, numb, sizeof(numb));
                    324:        cvs_printf("revision %s", numb);
                    325:
                    326:        strftime(timeb, sizeof(timeb), "%Y/%m/%d %H:%M:%S", &rdp->rd_date);
                    327:        cvs_printf("\ndate: %s;  author: %s;  state: %s;\n",
                    328:            timeb, rdp->rd_author, rdp->rd_state);
                    329:        cvs_printf("%s", rdp->rd_log);
1.1       jfb       330: }