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

Annotation of src/usr.bin/cvs/status.c, Revision 1.70

1.70    ! joris       1: /*     $OpenBSD: status.c,v 1.69 2007/01/11 02:35:55 joris Exp $       */
1.1       jfb         2: /*
1.57      joris       3:  * Copyright (c) 2006 Joris Vink <joris@openbsd.org>
1.64      xsa         4:  * Copyright (c) 2005, 2006 Xavier Santolaria <xsa@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.51      xsa        19: #include "includes.h"
1.1       jfb        20:
                     21: #include "cvs.h"
                     22: #include "log.h"
1.68      joris      23: #include "remote.h"
1.1       jfb        24:
1.57      joris      25: void   cvs_status_local(struct cvs_file *);
1.22      jfb        26:
1.64      xsa        27: static int show_sym = 0;
                     28:
1.22      jfb        29: struct cvs_cmd cvs_cmd_status = {
1.65      joris      30:        CVS_OP_STATUS, 0, "status",
1.22      jfb        31:        { "st", "stat" },
                     32:        "Display status information on checked out files",
                     33:        "[-lRv]",
1.64      xsa        34:        "lRv",
1.22      jfb        35:        NULL,
1.57      joris      36:        cvs_status
1.10      joris      37: };
1.1       jfb        38:
1.57      joris      39: #define CVS_STATUS_SEP \
                     40:        "==================================================================="
1.1       jfb        41:
1.57      joris      42: const char *status_tab[] = {
                     43:        "Unknown",
                     44:        "Locally Added",
                     45:        "Locally Removed",
                     46:        "Locally Modified",
                     47:        "Up-to-date",
                     48:        "Needs Checkout",
                     49:        "Needs Checkout",
                     50:        "Needs Merge",
                     51:        "Needs Patch",
                     52:        "Entry Invalid",
                     53:        "Unresolved Conflict",
                     54:        "Classifying error",
                     55: };
                     56:
                     57: int
                     58: cvs_status(int argc, char **argv)
1.1       jfb        59: {
1.58      joris      60:        int ch, flags;
1.57      joris      61:        char *arg = ".";
                     62:        struct cvs_recursion cr;
1.1       jfb        63:
1.68      joris      64:        flags = CR_RECURSE_DIRS;
1.58      joris      65:
1.57      joris      66:        while ((ch = getopt(argc, argv, cvs_cmd_status.cmd_opts)) != -1) {
1.1       jfb        67:                switch (ch) {
1.7       jfb        68:                case 'l':
1.58      joris      69:                        flags &= ~CR_RECURSE_DIRS;
1.7       jfb        70:                        break;
                     71:                case 'R':
                     72:                        break;
                     73:                case 'v':
1.64      xsa        74:                        show_sym = 1;
1.7       jfb        75:                        break;
1.1       jfb        76:                default:
1.57      joris      77:                        fatal("%s", cvs_cmd_status.cmd_synopsis);
1.1       jfb        78:                }
                     79:        }
                     80:
1.57      joris      81:        argc -= optind;
                     82:        argv += optind;
1.1       jfb        83:
1.57      joris      84:        cr.enterdir = NULL;
                     85:        cr.leavedir = NULL;
1.68      joris      86:
                     87:        if (current_cvsroot->cr_method == CVS_METHOD_LOCAL) {
                     88:                flags |= CR_REPO;
                     89:                cr.fileproc = cvs_status_local;
                     90:        } else {
1.69      joris      91:                cvs_client_connect_to_server();
1.68      joris      92:                if (!(flags & CR_RECURSE_DIRS))
                     93:                        cvs_client_send_request("Argument -l");
                     94:                if (show_sym)
                     95:                        cvs_client_send_request("Argument -v");
                     96:                cr.fileproc = cvs_client_sendfile;
                     97:        }
                     98:
1.58      joris      99:        cr.flags = flags;
1.57      joris     100:
                    101:        if (argc > 0)
                    102:                cvs_file_run(argc, argv, &cr);
                    103:        else
                    104:                cvs_file_run(1, &arg, &cr);
1.68      joris     105:
                    106:        if (current_cvsroot->cr_method != CVS_METHOD_LOCAL) {
                    107:                cvs_client_send_files(argv, argc);
                    108:                cvs_client_senddir(".");
                    109:                cvs_client_send_request("status");
                    110:                cvs_client_get_responses();
                    111:        }
1.26      xsa       112:
1.1       jfb       113:        return (0);
                    114: }
                    115:
1.57      joris     116: void
                    117: cvs_status_local(struct cvs_file *cf)
1.1       jfb       118: {
1.57      joris     119:        int l;
                    120:        size_t len;
1.70    ! joris     121:        RCSNUM *head;
1.57      joris     122:        const char *status;
                    123:        char buf[128], timebuf[32], revbuf[32];
1.64      xsa       124:        struct rcs_sym *sym;
1.1       jfb       125:
1.57      joris     126:        cvs_log(LP_TRACE, "cvs_status_local(%s)", cf->file_path);
1.1       jfb       127:
1.61      joris     128:        cvs_file_classify(cf, NULL, 1);
1.15      jfb       129:
1.57      joris     130:        if (cf->file_type == CVS_DIR) {
1.33      xsa       131:                if (verbosity > 1)
1.57      joris     132:                        cvs_log(LP_NOTICE, "Examining %s", cf->file_path);
                    133:                return;
1.33      xsa       134:        }
1.15      jfb       135:
1.57      joris     136:        cvs_printf("%s\n", CVS_STATUS_SEP);
1.5       jfb       137:
1.57      joris     138:        status = status_tab[cf->file_status];
                    139:        if (cf->file_status == FILE_MODIFIED &&
                    140:            cf->file_ent->ce_conflict != NULL)
                    141:                status = "File had conflicts on merge";
                    142:
1.63      xsa       143:        if (cf->file_status == FILE_LOST ||
                    144:            cf->file_status == FILE_UNKNOWN ||
1.67      joris     145:            (cf->file_rcs != NULL && cf->file_rcs->rf_inattic == 1)) {
1.63      xsa       146:                l = snprintf(buf, sizeof(buf), "no file %s\t", cf->file_name);
                    147:                if (l == -1 || l >= (int)sizeof(buf))
                    148:                        fatal("cvs_status_local: overflow");
                    149:        } else
                    150:                if (strlcpy(buf, cf->file_name, sizeof(buf)) >= sizeof(buf))
                    151:                        fatal("cvs_status_local: overflow");
                    152:
                    153:        cvs_printf("File: %-17s\tStatus: %s\n\n", buf, status);
1.57      joris     154:
                    155:        if (cf->file_ent == NULL) {
                    156:                l = snprintf(buf, sizeof(buf),
                    157:                    "No entry for %s", cf->file_name);
                    158:                if (l == -1 || l >= (int)sizeof(buf))
                    159:                        fatal("cvs_status_local: overflow");
                    160:        } else if (cf->file_status == FILE_ADDED) {
                    161:                len = strlcpy(buf, "New file!", sizeof(buf));
                    162:                if (len >= sizeof(buf))
                    163:                        fatal("cvs_status_local: truncation");
1.16      jfb       164:        } else {
1.57      joris     165:                rcsnum_tostr(cf->file_ent->ce_rev, revbuf, sizeof(revbuf));
1.35      xsa       166:
1.57      joris     167:                if (cf->file_ent->ce_conflict == NULL) {
                    168:                        ctime_r(&(cf->file_ent->ce_mtime), timebuf);
                    169:                        if (timebuf[strlen(timebuf) - 1] == '\n')
                    170:                                timebuf[strlen(timebuf) - 1] = '\0';
                    171:                } else {
                    172:                        len = strlcpy(timebuf, cf->file_ent->ce_conflict,
                    173:                            sizeof(timebuf));
                    174:                        if (len >= sizeof(timebuf))
                    175:                                fatal("cvs_status_local: truncation");
                    176:                }
1.35      xsa       177:
1.57      joris     178:                l = snprintf(buf, sizeof(buf), "%s\t%s", revbuf, timebuf);
                    179:                if (l == -1 || l >= (int)sizeof(buf))
                    180:                        fatal("cvs_status_local: overflow");
1.16      jfb       181:        }
1.32      joris     182:
1.28      xsa       183:        cvs_printf("   Working revision:\t%s\n", buf);
1.30      xsa       184:
1.57      joris     185:        buf[0] = '\0';
                    186:        if (cf->file_rcs == NULL) {
                    187:                len = strlcat(buf, "No revision control file", sizeof(buf));
                    188:                if (len >= sizeof(buf))
                    189:                        fatal("cvs_status_local: truncation");
1.30      xsa       190:        } else {
1.70    ! joris     191:                head = rcs_head_get(cf->file_rcs);
        !           192:                rcsnum_tostr(head, revbuf, sizeof(revbuf));
        !           193:                rcsnum_free(head);
1.57      joris     194:                l = snprintf(buf, sizeof(buf), "%s\t%s", revbuf,
                    195:                    cf->file_rpath);
                    196:                if (l == -1 || l >= (int)sizeof(buf))
                    197:                        fatal("cvs_status_local: overflow");
1.30      xsa       198:        }
                    199:
                    200:        cvs_printf("   Repository revision:\t%s\n", buf);
                    201:
1.57      joris     202:        if (cf->file_ent != NULL) {
                    203:                if (cf->file_ent->ce_tag != NULL)
1.60      xsa       204:                        cvs_printf("   Sticky Tag:\t\t%s\n",
1.57      joris     205:                            cf->file_ent->ce_tag);
1.60      xsa       206:                else if (verbosity > 0)
                    207:                        cvs_printf("   Sticky Tag:\t\t(none)\n");
                    208:
1.57      joris     209:                if (cf->file_ent->ce_opts != NULL)
                    210:                        cvs_printf("   Sticky Options:\t%s\n",
                    211:                            cf->file_ent->ce_opts);
1.60      xsa       212:                else if (verbosity > 0)
                    213:                        cvs_printf("   Sticky Options:\t(none)\n");
1.64      xsa       214:        }
                    215:
                    216:        if (show_sym == 1) {
                    217:                cvs_printf("\n");
                    218:                cvs_printf("   Existing Tags:\n");
                    219:
                    220:                if (!TAILQ_EMPTY(&(cf->file_rcs->rf_symbols))) {
                    221:                        TAILQ_FOREACH(sym,
                    222:                            &(cf->file_rcs->rf_symbols), rs_list) {
                    223:                                (void)rcsnum_tostr(sym->rs_num, revbuf,
                    224:                                    sizeof(revbuf));
                    225:
                    226:                                cvs_printf("\t%-25s\t(%s: %s)\n", sym->rs_name,
                    227:                                    RCSNUM_ISBRANCH(sym->rs_num) ? "branch" :
                    228:                                    "revision", revbuf);
                    229:                         }
                    230:                } else
                    231:                        cvs_printf("\tNo Tags Exist\n");
1.41      xsa       232:        }
1.15      jfb       233:
1.25      xsa       234:        cvs_printf("\n");
1.1       jfb       235: }