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

Annotation of src/usr.bin/cvs/commit.c, Revision 1.94

1.94    ! niallo      1: /*     $OpenBSD: commit.c,v 1.93 2007/01/12 19:28:12 joris Exp $       */
1.1       jfb         2: /*
1.55      joris       3:  * Copyright (c) 2006 Joris Vink <joris@openbsd.org>
1.71      xsa         4:  * Copyright (c) 2006 Xavier Santolaria <xsa@openbsd.org>
1.1       jfb         5:  *
1.55      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.55      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"
1.55      joris      22: #include "diff.h"
1.1       jfb        23: #include "log.h"
1.80      joris      24: #include "remote.h"
1.1       jfb        25:
1.55      joris      26: void   cvs_commit_local(struct cvs_file *);
1.86      joris      27: void   cvs_commit_check_files(struct cvs_file *);
1.55      joris      28:
1.91      joris      29: static BUF *commit_diff_file(struct cvs_file *);
1.71      xsa        30: static void commit_desc_set(struct cvs_file *);
1.55      joris      31:
                     32: struct cvs_flisthead files_affected;
1.86      joris      33: struct cvs_flisthead files_added;
                     34: struct cvs_flisthead files_removed;
                     35: struct cvs_flisthead files_modified;
                     36:
1.55      joris      37: int    conflicts_found;
1.86      joris      38: char   *logmsg = NULL;
1.34      jfb        39:
                     40: struct cvs_cmd cvs_cmd_commit = {
1.74      joris      41:        CVS_OP_COMMIT, 0, "commit",
1.55      joris      42:        { "ci", "com" },
1.34      jfb        43:        "Check files into the repository",
                     44:        "[-flR] [-F logfile | -m msg] [-r rev] ...",
                     45:        "F:flm:Rr:",
1.18      joris      46:        NULL,
1.55      joris      47:        cvs_commit
1.18      joris      48: };
1.1       jfb        49:
1.55      joris      50: int
                     51: cvs_commit(int argc, char **argv)
1.1       jfb        52: {
1.18      joris      53:        int ch;
1.55      joris      54:        char *arg = ".";
1.58      joris      55:        int flags;
1.55      joris      56:        struct cvs_recursion cr;
1.3       krapht     57:
1.58      joris      58:        flags = CR_RECURSE_DIRS;
                     59:
1.55      joris      60:        while ((ch = getopt(argc, argv, cvs_cmd_commit.cmd_opts)) != -1) {
1.1       jfb        61:                switch (ch) {
                     62:                case 'F':
1.88      joris      63:                        logmsg = cvs_logmsg_read(optarg);
1.1       jfb        64:                        break;
1.82      xsa        65:                case 'f':
                     66:                        break;
1.1       jfb        67:                case 'l':
1.58      joris      68:                        flags &= ~CR_RECURSE_DIRS;
1.1       jfb        69:                        break;
                     70:                case 'm':
1.55      joris      71:                        logmsg = xstrdup(optarg);
                     72:                        break;
1.82      xsa        73:                case 'R':
                     74:                        break;
1.55      joris      75:                case 'r':
1.1       jfb        76:                        break;
                     77:                default:
1.55      joris      78:                        fatal("%s", cvs_cmd_commit.cmd_synopsis);
1.1       jfb        79:                }
                     80:        }
                     81:
1.55      joris      82:        argc -= optind;
                     83:        argv += optind;
1.1       jfb        84:
1.86      joris      85:        TAILQ_INIT(&files_affected);
                     86:        TAILQ_INIT(&files_added);
                     87:        TAILQ_INIT(&files_removed);
                     88:        TAILQ_INIT(&files_modified);
                     89:        conflicts_found = 0;
                     90:
                     91:        cr.enterdir = NULL;
                     92:        cr.leavedir = NULL;
                     93:        cr.fileproc = cvs_commit_check_files;
                     94:        cr.flags = flags;
                     95:
                     96:        if (argc > 0)
                     97:                cvs_file_run(argc, argv, &cr);
                     98:        else
                     99:                cvs_file_run(1, &arg, &cr);
                    100:
                    101:        if (conflicts_found != 0)
                    102:                fatal("%d conflicts found, please correct these first",
                    103:                    conflicts_found);
1.92      joris     104:
                    105:        if (TAILQ_EMPTY(&files_affected))
                    106:                return (0);
1.86      joris     107:
                    108:        if (logmsg == NULL && cvs_server_active == 0) {
                    109:                logmsg = cvs_logmsg_create(&files_added, &files_removed,
                    110:                    &files_modified);
                    111:        }
                    112:
1.55      joris     113:        if (logmsg == NULL)
1.86      joris     114:                fatal("This shouldnt happen, honestly!");
1.87      joris     115:
                    116:        cvs_file_freelist(&files_modified);
                    117:        cvs_file_freelist(&files_removed);
                    118:        cvs_file_freelist(&files_added);
1.80      joris     119:
                    120:        if (current_cvsroot->cr_method != CVS_METHOD_LOCAL) {
1.89      joris     121:                cvs_client_connect_to_server();
1.80      joris     122:                cr.fileproc = cvs_client_sendfile;
                    123:
                    124:                if (argc > 0)
                    125:                        cvs_file_run(argc, argv, &cr);
                    126:                else
                    127:                        cvs_file_run(1, &arg, &cr);
                    128:
                    129:                cvs_client_send_request("Argument -m%s", logmsg);
                    130:
                    131:                cvs_client_send_files(argv, argc);
                    132:                cvs_client_senddir(".");
                    133:                cvs_client_send_request("ci");
                    134:                cvs_client_get_responses();
1.86      joris     135:        } else {
                    136:                cr.fileproc = cvs_commit_local;
                    137:                cvs_file_walklist(&files_affected, &cr);
                    138:                cvs_file_freelist(&files_affected);
1.80      joris     139:        }
1.1       jfb       140:
1.18      joris     141:        return (0);
                    142: }
1.1       jfb       143:
1.55      joris     144: void
1.86      joris     145: cvs_commit_check_files(struct cvs_file *cf)
1.18      joris     146: {
1.86      joris     147:        cvs_log(LP_TRACE, "cvs_commit_check_files(%s)", cf->file_path);
1.44      joris     148:
1.43      joris     149:        /*
1.55      joris     150:         * cvs_file_classify makes the noise for us
                    151:         * XXX - we want that?
1.43      joris     152:         */
1.65      joris     153:        cvs_file_classify(cf, NULL, 1);
1.59      joris     154:
                    155:        if (cf->file_type == CVS_DIR) {
                    156:                if (verbosity > 1)
                    157:                        cvs_log(LP_NOTICE, "Examining %s", cf->file_path);
                    158:                return;
                    159:        }
1.32      joris     160:
1.55      joris     161:        if (cf->file_status == FILE_CONFLICT ||
1.79      joris     162:            cf->file_status == FILE_UNLINK) {
1.55      joris     163:                conflicts_found++;
1.79      joris     164:                return;
                    165:        }
1.57      joris     166:
1.63      joris     167:        if (cf->file_status != FILE_REMOVED &&
                    168:            update_has_conflict_markers(cf)) {
1.60      joris     169:                cvs_log(LP_ERR, "conflict: unresolved conflicts in %s from "
                    170:                    "merging, please fix these first", cf->file_path);
                    171:                conflicts_found++;
1.79      joris     172:                return;
1.60      joris     173:        }
                    174:
1.57      joris     175:        if (cf->file_status == FILE_MERGE ||
1.72      joris     176:            cf->file_status == FILE_PATCH ||
1.79      joris     177:            cf->file_status == FILE_CHECKOUT ||
                    178:            cf->file_status == FILE_LOST) {
1.57      joris     179:                cvs_log(LP_ERR, "conflict: %s is not up-to-date",
                    180:                    cf->file_path);
                    181:                conflicts_found++;
1.79      joris     182:                return;
1.57      joris     183:        }
1.55      joris     184:
                    185:        if (cf->file_status == FILE_ADDED ||
                    186:            cf->file_status == FILE_REMOVED ||
                    187:            cf->file_status == FILE_MODIFIED)
                    188:                cvs_file_get(cf->file_path, &files_affected);
1.86      joris     189:
                    190:        switch (cf->file_status) {
                    191:        case FILE_ADDED:
                    192:                cvs_file_get(cf->file_path, &files_added);
                    193:                break;
                    194:        case FILE_REMOVED:
                    195:                cvs_file_get(cf->file_path, &files_removed);
                    196:                break;
                    197:        case FILE_MODIFIED:
                    198:                cvs_file_get(cf->file_path, &files_modified);
                    199:                break;
                    200:        }
1.55      joris     201: }
1.1       jfb       202:
1.55      joris     203: void
                    204: cvs_commit_local(struct cvs_file *cf)
                    205: {
1.91      joris     206:        BUF *b, *d;
1.67      joris     207:        int isnew;
1.93      joris     208:        RCSNUM *head;
1.66      joris     209:        int l, openflags, rcsflags;
1.91      joris     210:        char rbuf[24], nbuf[24];
1.56      joris     211:        CVSENTRIES *entlist;
1.90      jasper    212:        char *attic, *repo, *rcsfile;
1.17      joris     213:
1.55      joris     214:        cvs_log(LP_TRACE, "cvs_commit_local(%s)", cf->file_path);
1.65      joris     215:        cvs_file_classify(cf, NULL, 0);
1.69      joris     216:
                    217:        if (cvs_noexec == 1)
                    218:                return;
1.35      xsa       219:
1.64      joris     220:        if (cf->file_type != CVS_FILE)
                    221:                fatal("cvs_commit_local: '%s' is not a file", cf->file_path);
                    222:
1.56      joris     223:        if (cf->file_status == FILE_MODIFIED ||
1.66      joris     224:            cf->file_status == FILE_REMOVED || (cf->file_status == FILE_ADDED
1.93      joris     225:            && cf->file_rcs != NULL && cf->file_rcs->rf_dead == 1)) {
                    226:                head = rcs_head_get(cf->file_rcs);
                    227:                rcsnum_tostr(head, rbuf, sizeof(rbuf));
                    228:                rcsnum_free(head);
                    229:        } else {
1.61      joris     230:                strlcpy(rbuf, "Non-existent", sizeof(rbuf));
1.93      joris     231:        }
1.61      joris     232:
1.67      joris     233:        isnew = 0;
1.66      joris     234:        if (cf->file_status == FILE_ADDED) {
1.67      joris     235:                isnew = 1;
1.66      joris     236:                rcsflags = RCS_CREATE;
                    237:                openflags = O_CREAT | O_TRUNC | O_WRONLY;
                    238:                if (cf->file_rcs != NULL) {
                    239:                        if (cf->file_rcs->rf_inattic == 0)
                    240:                                cvs_log(LP_ERR, "warning: expected %s "
                    241:                                    "to be in the Attic", cf->file_path);
                    242:
                    243:                        if (cf->file_rcs->rf_dead == 0)
                    244:                                cvs_log(LP_ERR, "warning: expected %s "
                    245:                                    "to be dead", cf->file_path);
                    246:
                    247:                        rcsfile = xmalloc(MAXPATHLEN);
                    248:                        repo = xmalloc(MAXPATHLEN);
                    249:                        cvs_get_repository_path(cf->file_wd, repo, MAXPATHLEN);
                    250:                        l = snprintf(rcsfile, MAXPATHLEN, "%s/%s%s",
                    251:                            repo, cf->file_name, RCS_FILE_EXT);
                    252:                        if (l == -1 || l >= MAXPATHLEN)
                    253:                                fatal("cvs_commit_local: overflow");
                    254:
                    255:                        if (rename(cf->file_rpath, rcsfile) == -1)
                    256:                                fatal("cvs_commit_local: failed to move %s "
                    257:                                    "outside the Attic: %s", cf->file_path,
                    258:                                    strerror(errno));
                    259:
                    260:                        xfree(cf->file_rpath);
                    261:                        cf->file_rpath = xstrdup(rcsfile);
                    262:                        xfree(rcsfile);
                    263:                        xfree(repo);
                    264:
                    265:                        rcsflags = RCS_READ | RCS_PARSE_FULLY;
                    266:                        openflags = O_RDONLY;
                    267:                        rcs_close(cf->file_rcs);
1.67      joris     268:                        isnew = 0;
1.66      joris     269:                }
                    270:
                    271:                cf->repo_fd = open(cf->file_rpath, openflags);
1.61      joris     272:                if (cf->repo_fd < 0)
                    273:                        fatal("cvs_commit_local: %s", strerror(errno));
                    274:
                    275:                cf->file_rcs = rcs_open(cf->file_rpath, cf->repo_fd,
1.66      joris     276:                    rcsflags, 0600);
1.61      joris     277:                if (cf->file_rcs == NULL)
                    278:                        fatal("cvs_commit_local: failed to create RCS file "
                    279:                            "for %s", cf->file_path);
1.71      xsa       280:
                    281:                commit_desc_set(cf);
1.61      joris     282:        }
1.36      joris     283:
1.77      reyk      284:        if (verbosity > 1) {
                    285:                cvs_printf("Checking in %s:\n", cf->file_path);
                    286:                cvs_printf("%s <- %s\n", cf->file_rpath, cf->file_path);
                    287:                cvs_printf("old revision: %s; ", rbuf);
                    288:        }
1.7       jfb       289:
1.67      joris     290:        if (isnew == 0)
1.61      joris     291:                d = commit_diff_file(cf);
1.7       jfb       292:
1.56      joris     293:        if (cf->file_status == FILE_REMOVED) {
1.94    ! niallo    294:                b = rcs_rev_getbuf(cf->file_rcs, cf->file_rcs->rf_head);
1.56      joris     295:                if (b == NULL)
                    296:                        fatal("cvs_commit_local: failed to get HEAD");
1.61      joris     297:        } else {
1.73      joris     298:                if ((b = cvs_buf_load_fd(cf->fd, BUF_AUTOEXT)) == NULL)
1.56      joris     299:                        fatal("cvs_commit_local: failed to load file");
                    300:        }
1.7       jfb       301:
1.67      joris     302:        if (isnew == 0) {
1.61      joris     303:                if (rcs_deltatext_set(cf->file_rcs,
                    304:                    cf->file_rcs->rf_head, d) == -1)
                    305:                        fatal("cvs_commit_local: failed to set delta");
                    306:        }
1.3       krapht    307:
1.55      joris     308:        if (rcs_rev_add(cf->file_rcs, RCS_HEAD_REV, logmsg, -1, NULL) == -1)
                    309:                fatal("cvs_commit_local: failed to add new revision");
1.3       krapht    310:
1.91      joris     311:        if (rcs_deltatext_set(cf->file_rcs, cf->file_rcs->rf_head, b) == -1)
1.55      joris     312:                fatal("cvs_commit_local: failed to set new HEAD delta");
1.3       krapht    313:
1.56      joris     314:        if (cf->file_status == FILE_REMOVED) {
                    315:                if (rcs_state_set(cf->file_rcs,
                    316:                    cf->file_rcs->rf_head, RCS_STATE_DEAD) == -1)
                    317:                        fatal("cvs_commit_local: failed to set state");
1.68      joris     318:        }
                    319:
                    320:        if (cf->file_rcs->rf_branch != NULL) {
                    321:                rcsnum_free(cf->file_rcs->rf_branch);
                    322:                cf->file_rcs->rf_branch = NULL;
1.56      joris     323:        }
                    324:
1.55      joris     325:        rcs_write(cf->file_rcs);
1.6       jfb       326:
1.56      joris     327:        if (cf->file_status == FILE_REMOVED) {
1.77      reyk      328:                strlcpy(nbuf, "Removed", sizeof(nbuf));
1.61      joris     329:        } else if (cf->file_status == FILE_ADDED) {
1.66      joris     330:                if (cf->file_rcs->rf_dead == 1)
1.77      reyk      331:                        strlcpy(nbuf, "Initial Revision", sizeof(nbuf));
1.63      joris     332:                else
                    333:                        rcsnum_tostr(cf->file_rcs->rf_head,
1.77      reyk      334:                            nbuf, sizeof(nbuf));
1.56      joris     335:        } else if (cf->file_status == FILE_MODIFIED) {
1.77      reyk      336:                rcsnum_tostr(cf->file_rcs->rf_head, nbuf, sizeof(nbuf));
1.56      joris     337:        }
                    338:
1.77      reyk      339:        if (verbosity > 1)
                    340:                cvs_printf("new revision: %s\n", nbuf);
1.3       krapht    341:
1.55      joris     342:        (void)unlink(cf->file_path);
                    343:        (void)close(cf->fd);
                    344:        cf->fd = -1;
1.56      joris     345:
                    346:        if (cf->file_status != FILE_REMOVED) {
1.60      joris     347:                b = rcs_getrev(cf->file_rcs, cf->file_rcs->rf_head);
                    348:                if (b == NULL)
                    349:                        fatal("cvs_commit_local: failed to get HEAD");
                    350:
1.84      joris     351:                cvs_checkout_file(cf, cf->file_rcs->rf_head, b, CO_COMMIT);
1.56      joris     352:        } else {
                    353:                entlist = cvs_ent_open(cf->file_wd);
                    354:                cvs_ent_remove(entlist, cf->file_name);
                    355:                cvs_ent_close(entlist, ENT_SYNC);
1.64      joris     356:
                    357:                repo = xmalloc(MAXPATHLEN);
                    358:                attic = xmalloc(MAXPATHLEN);
                    359:                cvs_get_repository_path(cf->file_wd, repo, MAXPATHLEN);
                    360:
                    361:                l = snprintf(attic, MAXPATHLEN, "%s/%s", repo, CVS_PATH_ATTIC);
                    362:                if (l == -1 || l >= MAXPATHLEN)
                    363:                        fatal("cvs_commit_local: overflow");
                    364:
                    365:                if (mkdir(attic, 0755) == -1 && errno != EEXIST)
                    366:                        fatal("cvs_commit_local: failed to create Attic");
                    367:
                    368:                l = snprintf(attic, MAXPATHLEN, "%s/%s/%s%s", repo,
                    369:                    CVS_PATH_ATTIC, cf->file_name, RCS_FILE_EXT);
                    370:                if (l == -1 || l >= MAXPATHLEN)
                    371:                        fatal("cvs_commit_local: overflow");
                    372:
                    373:                if (rename(cf->file_rpath, attic) == -1)
                    374:                        fatal("cvs_commit_local: failed to move %s to Attic",
                    375:                            cf->file_path);
                    376:
                    377:                xfree(repo);
                    378:                xfree(attic);
1.85      joris     379:
                    380:                if (cvs_server_active == 1)
                    381:                        cvs_server_update_entry("Remove-entry", cf);
1.56      joris     382:        }
1.3       krapht    383:
1.77      reyk      384:        if (verbosity > 1)
                    385:                cvs_printf("done\n");
                    386:        else {
                    387:                cvs_log(LP_NOTICE, "checking in '%s'; revision %s -> %s",
                    388:                    cf->file_path, rbuf, nbuf);
                    389:        }
1.39      xsa       390: }
                    391:
1.91      joris     392: static BUF *
1.55      joris     393: commit_diff_file(struct cvs_file *cf)
1.39      xsa       394: {
1.91      joris     395:        char *p1, *p2;
1.55      joris     396:        BUF *b1, *b2, *b3;
1.39      xsa       397:
1.63      joris     398:        if (cf->file_status == FILE_MODIFIED ||
                    399:            cf->file_status == FILE_ADDED) {
1.73      joris     400:                if ((b1 = cvs_buf_load_fd(cf->fd, BUF_AUTOEXT)) == NULL)
1.56      joris     401:                        fatal("commit_diff_file: failed to load '%s'",
                    402:                            cf->file_path);
1.63      joris     403:        } else {
1.94    ! niallo    404:                b1 = rcs_rev_getbuf(cf->file_rcs, cf->file_rcs->rf_head);
1.56      joris     405:                if (b1 == NULL)
                    406:                        fatal("commit_diff_file: failed to load HEAD");
                    407:                b1 = rcs_kwexp_buf(b1, cf->file_rcs, cf->file_rcs->rf_head);
                    408:        }
1.3       krapht    409:
1.94    ! niallo    410:        if ((b2 = rcs_rev_getbuf(cf->file_rcs, cf->file_rcs->rf_head)) == NULL)
1.55      joris     411:                fatal("commit_diff_file: failed to load HEAD for '%s'",
                    412:                    cf->file_path);
                    413:
                    414:        if ((b3 = cvs_buf_alloc(128, BUF_AUTOEXT)) == NULL)
                    415:                fatal("commit_diff_file: failed to create diff buf");
                    416:
                    417:        (void)xasprintf(&p1, "%s/diff1.XXXXXXXXXX", cvs_tmpdir);
1.81      ray       418:        cvs_buf_write_stmp(b1, p1, NULL);
1.55      joris     419:        cvs_buf_free(b1);
                    420:
                    421:        (void)xasprintf(&p2, "%s/diff2.XXXXXXXXXX", cvs_tmpdir);
1.81      ray       422:        cvs_buf_write_stmp(b2, p2, NULL);
1.55      joris     423:        cvs_buf_free(b2);
                    424:
                    425:        diff_format = D_RCSDIFF;
                    426:        if (cvs_diffreg(p1, p2, b3) == D_ERROR)
                    427:                fatal("commit_diff_file: failed to get RCS patch");
                    428:
1.91      joris     429:        return (b3);
1.71      xsa       430: }
                    431:
                    432: static void
                    433: commit_desc_set(struct cvs_file *cf)
                    434: {
                    435:        BUF *bp;
1.76      joris     436:        int l, fd;
1.71      xsa       437:        char *desc_path, *desc;
                    438:
                    439:        desc_path = xmalloc(MAXPATHLEN);
                    440:        l = snprintf(desc_path, MAXPATHLEN, "%s/%s%s",
                    441:            CVS_PATH_CVSDIR, cf->file_name, CVS_DESCR_FILE_EXT);
                    442:        if (l == -1 || l >= MAXPATHLEN)
                    443:                fatal("commit_desc_set: overflow");
                    444:
1.76      joris     445:        if ((fd = open(desc_path, O_RDONLY)) == -1) {
1.71      xsa       446:                xfree(desc_path);
                    447:                return;
                    448:        }
                    449:
1.78      joris     450:        bp = cvs_buf_load_fd(fd, BUF_AUTOEXT);
1.71      xsa       451:        cvs_buf_putc(bp, '\0');
                    452:        desc = cvs_buf_release(bp);
                    453:
                    454:        rcs_desc_set(cf->file_rcs, desc);
                    455:
1.76      joris     456:        (void)close(fd);
1.71      xsa       457:        (void)cvs_unlink(desc_path);
                    458:
                    459:        xfree(desc);
                    460:        xfree(desc_path);
1.1       jfb       461: }