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

1.74    ! niallo      1: /*     $OpenBSD: status.c,v 1.73 2007/02/22 06:42:09 otto 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.73      otto       19: #include <string.h>
                     20: #include <unistd.h>
1.1       jfb        21:
                     22: #include "cvs.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:        size_t len;
1.70      joris     120:        RCSNUM *head;
1.57      joris     121:        const char *status;
                    122:        char buf[128], timebuf[32], revbuf[32];
1.64      xsa       123:        struct rcs_sym *sym;
1.1       jfb       124:
1.57      joris     125:        cvs_log(LP_TRACE, "cvs_status_local(%s)", cf->file_path);
1.1       jfb       126:
1.72      joris     127:        cvs_file_classify(cf, NULL);
1.15      jfb       128:
1.57      joris     129:        if (cf->file_type == CVS_DIR) {
1.33      xsa       130:                if (verbosity > 1)
1.57      joris     131:                        cvs_log(LP_NOTICE, "Examining %s", cf->file_path);
                    132:                return;
1.33      xsa       133:        }
1.15      jfb       134:
1.57      joris     135:        cvs_printf("%s\n", CVS_STATUS_SEP);
1.5       jfb       136:
1.57      joris     137:        status = status_tab[cf->file_status];
                    138:        if (cf->file_status == FILE_MODIFIED &&
                    139:            cf->file_ent->ce_conflict != NULL)
                    140:                status = "File had conflicts on merge";
                    141:
1.63      xsa       142:        if (cf->file_status == FILE_LOST ||
                    143:            cf->file_status == FILE_UNKNOWN ||
1.74    ! niallo    144:            (cf->file_rcs != NULL && cf->in_attic == 1)) {
1.71      xsa       145:                (void)xsnprintf(buf, sizeof(buf), "no file %s\t",
                    146:                    cf->file_name);
1.63      xsa       147:        } else
                    148:                if (strlcpy(buf, cf->file_name, sizeof(buf)) >= sizeof(buf))
                    149:                        fatal("cvs_status_local: overflow");
                    150:
                    151:        cvs_printf("File: %-17s\tStatus: %s\n\n", buf, status);
1.57      joris     152:
                    153:        if (cf->file_ent == NULL) {
1.71      xsa       154:                (void)xsnprintf(buf, sizeof(buf),
1.57      joris     155:                    "No entry for %s", cf->file_name);
                    156:        } else if (cf->file_status == FILE_ADDED) {
                    157:                len = strlcpy(buf, "New file!", sizeof(buf));
                    158:                if (len >= sizeof(buf))
                    159:                        fatal("cvs_status_local: truncation");
1.16      jfb       160:        } else {
1.57      joris     161:                rcsnum_tostr(cf->file_ent->ce_rev, revbuf, sizeof(revbuf));
1.35      xsa       162:
1.57      joris     163:                if (cf->file_ent->ce_conflict == NULL) {
                    164:                        ctime_r(&(cf->file_ent->ce_mtime), timebuf);
                    165:                        if (timebuf[strlen(timebuf) - 1] == '\n')
                    166:                                timebuf[strlen(timebuf) - 1] = '\0';
                    167:                } else {
                    168:                        len = strlcpy(timebuf, cf->file_ent->ce_conflict,
                    169:                            sizeof(timebuf));
                    170:                        if (len >= sizeof(timebuf))
                    171:                                fatal("cvs_status_local: truncation");
                    172:                }
1.35      xsa       173:
1.71      xsa       174:                (void)xsnprintf(buf, sizeof(buf), "%s\t%s", revbuf, timebuf);
1.16      jfb       175:        }
1.32      joris     176:
1.28      xsa       177:        cvs_printf("   Working revision:\t%s\n", buf);
1.30      xsa       178:
1.57      joris     179:        buf[0] = '\0';
                    180:        if (cf->file_rcs == NULL) {
                    181:                len = strlcat(buf, "No revision control file", sizeof(buf));
                    182:                if (len >= sizeof(buf))
                    183:                        fatal("cvs_status_local: truncation");
1.30      xsa       184:        } else {
1.70      joris     185:                head = rcs_head_get(cf->file_rcs);
                    186:                rcsnum_tostr(head, revbuf, sizeof(revbuf));
                    187:                rcsnum_free(head);
1.71      xsa       188:                (void)xsnprintf(buf, sizeof(buf), "%s\t%s", revbuf,
1.57      joris     189:                    cf->file_rpath);
1.30      xsa       190:        }
                    191:
                    192:        cvs_printf("   Repository revision:\t%s\n", buf);
                    193:
1.57      joris     194:        if (cf->file_ent != NULL) {
                    195:                if (cf->file_ent->ce_tag != NULL)
1.60      xsa       196:                        cvs_printf("   Sticky Tag:\t\t%s\n",
1.57      joris     197:                            cf->file_ent->ce_tag);
1.60      xsa       198:                else if (verbosity > 0)
                    199:                        cvs_printf("   Sticky Tag:\t\t(none)\n");
                    200:
1.57      joris     201:                if (cf->file_ent->ce_opts != NULL)
                    202:                        cvs_printf("   Sticky Options:\t%s\n",
                    203:                            cf->file_ent->ce_opts);
1.60      xsa       204:                else if (verbosity > 0)
                    205:                        cvs_printf("   Sticky Options:\t(none)\n");
1.64      xsa       206:        }
                    207:
                    208:        if (show_sym == 1) {
                    209:                cvs_printf("\n");
                    210:                cvs_printf("   Existing Tags:\n");
                    211:
                    212:                if (!TAILQ_EMPTY(&(cf->file_rcs->rf_symbols))) {
                    213:                        TAILQ_FOREACH(sym,
                    214:                            &(cf->file_rcs->rf_symbols), rs_list) {
                    215:                                (void)rcsnum_tostr(sym->rs_num, revbuf,
                    216:                                    sizeof(revbuf));
                    217:
                    218:                                cvs_printf("\t%-25s\t(%s: %s)\n", sym->rs_name,
                    219:                                    RCSNUM_ISBRANCH(sym->rs_num) ? "branch" :
                    220:                                    "revision", revbuf);
                    221:                         }
                    222:                } else
                    223:                        cvs_printf("\tNo Tags Exist\n");
1.41      xsa       224:        }
1.15      jfb       225:
1.25      xsa       226:        cvs_printf("\n");
1.1       jfb       227: }