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

Annotation of src/usr.bin/rcs/rcsclean.c, Revision 1.27

1.27    ! ray         1: /*     $OpenBSD: rcsclean.c,v 1.26 2006/03/16 04:04:57 ray Exp $       */
1.1       joris       2: /*
                      3:  * Copyright (c) 2005 Joris Vink <joris@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:
1.22      xsa        27: #include "includes.h"
1.1       joris      28:
1.23      xsa        29: #include "rcsprog.h"
1.4       niallo     30: #include "diff.h"
1.1       joris      31:
                     32: static int rcsclean_file(char *, RCSNUM *);
1.3       joris      33: static int nflag = 0;
                     34: static int kflag = RCS_KWEXP_ERR;
1.11      xsa        35: static int uflag = 0;
1.17      xsa        36: static int flags = 0;
1.19      joris      37: static char *locker = NULL;
1.1       joris      38:
                     39: int
                     40: rcsclean_main(int argc, char **argv)
                     41: {
1.17      xsa        42:        int i, ch;
1.1       joris      43:        RCSNUM *rev;
                     44:        DIR *dirp;
                     45:        struct dirent *dp;
                     46:
                     47:        rev = RCS_HEAD_REV;
                     48:
1.27    ! ray        49:        while ((ch = rcs_getopt(argc, argv, "k:n::q::r:Tu::Vx::")) != -1) {
1.1       joris      50:                switch (ch) {
1.3       joris      51:                case 'k':
1.7       joris      52:                        kflag = rcs_kflag_get(rcs_optarg);
1.3       joris      53:                        if (RCS_KWEXP_INVAL(kflag)) {
                     54:                                cvs_log(LP_ERR,
                     55:                                    "invalid RCS keyword expansion mode");
                     56:                                (usage)();
                     57:                                exit(1);
                     58:                        }
                     59:                        break;
                     60:                case 'n':
1.12      xsa        61:                        rcs_set_rev(rcs_optarg, &rev);
1.3       joris      62:                        nflag = 1;
                     63:                        break;
1.1       joris      64:                case 'q':
1.12      xsa        65:                        rcs_set_rev(rcs_optarg, &rev);
1.1       joris      66:                        verbose = 0;
                     67:                        break;
1.2       joris      68:                case 'r':
1.8       joris      69:                        rcs_set_rev(rcs_optarg, &rev);
1.16      xsa        70:                        break;
                     71:                case 'T':
                     72:                        flags |= PRESERVETIME;
1.2       joris      73:                        break;
1.11      xsa        74:                case 'u':
1.12      xsa        75:                        rcs_set_rev(rcs_optarg, &rev);
1.11      xsa        76:                        uflag = 1;
                     77:                        break;
1.1       joris      78:                case 'V':
                     79:                        printf("%s\n", rcs_version);
                     80:                        exit(0);
1.26      ray        81:                        /* NOTREACHED */
1.15      xsa        82:                case 'x':
1.27    ! ray        83:                        /* Use blank extension if none given. */
        !            84:                        rcs_suffixes = rcs_optarg ? rcs_optarg : "";
1.15      xsa        85:                        break;
1.1       joris      86:                default:
                     87:                        break;
                     88:                }
                     89:        }
                     90:
1.7       joris      91:        argc -= rcs_optind;
                     92:        argv += rcs_optind;
1.1       joris      93:
1.19      joris      94:        if ((locker = getlogin()) == NULL)
1.21      xsa        95:                fatal("getlogin failed");
1.19      joris      96:
1.1       joris      97:        if (argc == 0) {
                     98:                if ((dirp = opendir(".")) == NULL) {
                     99:                        cvs_log(LP_ERRNO, "failed to open directory '.'");
                    100:                        (usage)();
                    101:                        exit(1);
                    102:                }
                    103:
                    104:                while ((dp = readdir(dirp)) != NULL) {
                    105:                        if (dp->d_type == DT_DIR)
                    106:                                continue;
                    107:                        rcsclean_file(dp->d_name, rev);
                    108:                }
                    109:
                    110:                closedir(dirp);
                    111:        } else {
                    112:                for (i = 0; i < argc; i++)
                    113:                        rcsclean_file(argv[i], rev);
                    114:        }
                    115:
                    116:        return (0);
                    117: }
                    118:
                    119: void
                    120: rcsclean_usage(void)
                    121: {
1.5       deraadt   122:        fprintf(stderr,
1.24      jmc       123:            "usage: rcsclean [-TV] [-kmode] [-n[rev]] [-q[rev]]\n"
                    124:            "                [-rrev] [-u[rev]] [-xsuffixes] [-ztz] [file] ...\n");
1.1       joris     125: }
                    126:
                    127: static int
                    128: rcsclean_file(char *fname, RCSNUM *rev)
                    129: {
                    130:        int match;
                    131:        RCSFILE *file;
1.11      xsa       132:        char fpath[MAXPATHLEN], numb[64];
1.1       joris     133:        RCSNUM *frev;
                    134:        BUF *b1, *b2;
                    135:        char *s1, *s2, *c1, *c2;
1.3       joris     136:        struct stat st;
1.17      xsa       137:        time_t rcs_mtime = -1;
1.1       joris     138:
                    139:        match = 1;
1.3       joris     140:
                    141:        if (stat(fname, &st) == -1)
                    142:                return (-1);
                    143:
1.1       joris     144:        if (rcs_statfile(fname, fpath, sizeof(fpath)) < 0)
                    145:                return (-1);
                    146:
                    147:        if ((file = rcs_open(fpath, RCS_RDWR)) == NULL)
                    148:                return (-1);
                    149:
1.17      xsa       150:        if (flags & PRESERVETIME)
                    151:                rcs_mtime = rcs_get_mtime(file->rf_path);
                    152:
1.3       joris     153:        if (!RCS_KWEXP_INVAL(kflag))
                    154:                rcs_kwexp_set(file, kflag);
                    155:
1.1       joris     156:        if (rev == RCS_HEAD_REV)
                    157:                frev = file->rf_head;
                    158:        else
                    159:                frev = rev;
                    160:
                    161:        if ((b1 = rcs_getrev(file, frev)) == NULL) {
                    162:                cvs_log(LP_ERR, "failed to get needed revision");
                    163:                rcs_close(file);
                    164:                return (-1);
                    165:        }
                    166:
                    167:        if ((b2 = cvs_buf_load(fname, BUF_AUTOEXT)) == NULL) {
                    168:                cvs_log(LP_ERRNO, "failed to load '%s'", fname);
                    169:                rcs_close(file);
                    170:                return (-1);
                    171:        }
                    172:
                    173:        cvs_buf_putc(b1, '\0');
                    174:        cvs_buf_putc(b2, '\0');
                    175:
                    176:        c1 = cvs_buf_release(b1);
                    177:        c2 = cvs_buf_release(b2);
                    178:
1.25      deraadt   179:        for (s1 = c1, s2 = c2; *s1 && *s2; s1++, s2++) {
1.1       joris     180:                if (*s1 != *s2) {
                    181:                        match = 0;
                    182:                        break;
                    183:                }
                    184:        }
                    185:
1.20      joris     186:        xfree(c1);
                    187:        xfree(c2);
1.1       joris     188:
1.9       xsa       189:        if (match == 1) {
1.13      xsa       190:                if ((uflag == 1) && (!TAILQ_EMPTY(&(file->rf_locks)))) {
1.11      xsa       191:                        if ((verbose == 1) && (nflag == 0)) {
                    192:                                printf("rcs -u%s %s\n",
                    193:                                    rcsnum_tostr(frev, numb, sizeof(numb)),
                    194:                                    fpath);
                    195:                        }
1.19      joris     196:                        (void)rcs_lock_remove(file, locker, frev);
1.11      xsa       197:                }
                    198:
1.14      xsa       199:                if (TAILQ_EMPTY(&(file->rf_locks))) {
                    200:                        if (verbose == 1)
                    201:                                printf("rm -f %s\n", fname);
1.11      xsa       202:
1.14      xsa       203:                        if (nflag == 0)
                    204:                                (void)unlink(fname);
                    205:                }
1.1       joris     206:        }
                    207:
                    208:        rcs_close(file);
1.17      xsa       209:
                    210:        if (flags & PRESERVETIME)
                    211:                rcs_set_mtime(fpath, rcs_mtime);
                    212:
1.1       joris     213:        return (0);
                    214: }