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

1.125   ! joris       1: /*     $OpenBSD: commit.c,v 1.124 2008/01/31 10:15:05 tobias 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.105     otto       19: #include <sys/stat.h>
                     20:
                     21: #include <errno.h>
                     22: #include <fcntl.h>
                     23: #include <string.h>
                     24: #include <unistd.h>
1.1       jfb        25:
                     26: #include "cvs.h"
1.55      joris      27: #include "diff.h"
1.80      joris      28: #include "remote.h"
1.1       jfb        29:
1.55      joris      30: void   cvs_commit_local(struct cvs_file *);
1.86      joris      31: void   cvs_commit_check_files(struct cvs_file *);
1.55      joris      32:
1.112     joris      33: static BUF *commit_diff(struct cvs_file *, RCSNUM *, int);
1.71      xsa        34: static void commit_desc_set(struct cvs_file *);
1.55      joris      35:
                     36: struct cvs_flisthead files_affected;
1.86      joris      37: struct cvs_flisthead files_added;
                     38: struct cvs_flisthead files_removed;
                     39: struct cvs_flisthead files_modified;
                     40:
1.55      joris      41: int    conflicts_found;
1.86      joris      42: char   *logmsg = NULL;
1.34      jfb        43:
                     44: struct cvs_cmd cvs_cmd_commit = {
1.124     tobias     45:        CVS_OP_COMMIT, CVS_USE_WDIR, "commit",
1.55      joris      46:        { "ci", "com" },
1.34      jfb        47:        "Check files into the repository",
                     48:        "[-flR] [-F logfile | -m msg] [-r rev] ...",
                     49:        "F:flm:Rr:",
1.18      joris      50:        NULL,
1.55      joris      51:        cvs_commit
1.18      joris      52: };
1.1       jfb        53:
1.55      joris      54: int
                     55: cvs_commit(int argc, char **argv)
1.1       jfb        56: {
1.121     tobias     57:        int ch, Fflag, mflag;
1.55      joris      58:        char *arg = ".";
1.58      joris      59:        int flags;
1.55      joris      60:        struct cvs_recursion cr;
1.3       krapht     61:
1.58      joris      62:        flags = CR_RECURSE_DIRS;
1.121     tobias     63:        Fflag = mflag = 0;
1.58      joris      64:
1.55      joris      65:        while ((ch = getopt(argc, argv, cvs_cmd_commit.cmd_opts)) != -1) {
1.1       jfb        66:                switch (ch) {
                     67:                case 'F':
1.121     tobias     68:                        /* free previously assigned value */
                     69:                        if (logmsg != NULL)
                     70:                                xfree(logmsg);
1.88      joris      71:                        logmsg = cvs_logmsg_read(optarg);
1.121     tobias     72:                        Fflag = 1;
1.1       jfb        73:                        break;
1.82      xsa        74:                case 'f':
                     75:                        break;
1.1       jfb        76:                case 'l':
1.58      joris      77:                        flags &= ~CR_RECURSE_DIRS;
1.1       jfb        78:                        break;
                     79:                case 'm':
1.121     tobias     80:                        /* free previously assigned value */
                     81:                        if (logmsg != NULL)
                     82:                                xfree(logmsg);
1.55      joris      83:                        logmsg = xstrdup(optarg);
1.121     tobias     84:                        mflag = 1;
1.55      joris      85:                        break;
1.82      xsa        86:                case 'R':
1.120     tobias     87:                        flags |= CR_RECURSE_DIRS;
1.82      xsa        88:                        break;
1.55      joris      89:                case 'r':
1.1       jfb        90:                        break;
                     91:                default:
1.55      joris      92:                        fatal("%s", cvs_cmd_commit.cmd_synopsis);
1.1       jfb        93:                }
                     94:        }
                     95:
1.55      joris      96:        argc -= optind;
                     97:        argv += optind;
1.121     tobias     98:
                     99:        /* -F and -m are mutually exclusive */
                    100:        if (Fflag && mflag)
                    101:                fatal("cannot specify both a log file and a message");
1.1       jfb       102:
1.86      joris     103:        TAILQ_INIT(&files_affected);
                    104:        TAILQ_INIT(&files_added);
                    105:        TAILQ_INIT(&files_removed);
                    106:        TAILQ_INIT(&files_modified);
                    107:        conflicts_found = 0;
                    108:
                    109:        cr.enterdir = NULL;
                    110:        cr.leavedir = NULL;
                    111:        cr.fileproc = cvs_commit_check_files;
                    112:        cr.flags = flags;
                    113:
                    114:        if (argc > 0)
                    115:                cvs_file_run(argc, argv, &cr);
                    116:        else
                    117:                cvs_file_run(1, &arg, &cr);
                    118:
                    119:        if (conflicts_found != 0)
                    120:                fatal("%d conflicts found, please correct these first",
                    121:                    conflicts_found);
1.92      joris     122:
                    123:        if (TAILQ_EMPTY(&files_affected))
                    124:                return (0);
1.86      joris     125:
                    126:        if (logmsg == NULL && cvs_server_active == 0) {
                    127:                logmsg = cvs_logmsg_create(&files_added, &files_removed,
                    128:                    &files_modified);
                    129:        }
                    130:
1.55      joris     131:        if (logmsg == NULL)
1.86      joris     132:                fatal("This shouldnt happen, honestly!");
1.87      joris     133:
                    134:        cvs_file_freelist(&files_modified);
                    135:        cvs_file_freelist(&files_removed);
                    136:        cvs_file_freelist(&files_added);
1.80      joris     137:
                    138:        if (current_cvsroot->cr_method != CVS_METHOD_LOCAL) {
1.89      joris     139:                cvs_client_connect_to_server();
1.80      joris     140:                cr.fileproc = cvs_client_sendfile;
                    141:
                    142:                if (argc > 0)
                    143:                        cvs_file_run(argc, argv, &cr);
                    144:                else
                    145:                        cvs_file_run(1, &arg, &cr);
1.99      xsa       146:
                    147:                if (!(flags & CR_RECURSE_DIRS))
                    148:                        cvs_client_send_request("Argument -l");
1.80      joris     149:
1.123     tobias    150:                cvs_client_send_logmsg(logmsg);
1.80      joris     151:                cvs_client_send_files(argv, argc);
                    152:                cvs_client_senddir(".");
                    153:                cvs_client_send_request("ci");
                    154:                cvs_client_get_responses();
1.86      joris     155:        } else {
                    156:                cr.fileproc = cvs_commit_local;
                    157:                cvs_file_walklist(&files_affected, &cr);
                    158:                cvs_file_freelist(&files_affected);
1.80      joris     159:        }
1.1       jfb       160:
1.123     tobias    161:        xfree(logmsg);
1.18      joris     162:        return (0);
                    163: }
1.1       jfb       164:
1.55      joris     165: void
1.86      joris     166: cvs_commit_check_files(struct cvs_file *cf)
1.18      joris     167: {
1.112     joris     168:        char *tag;
                    169:        RCSNUM *branch, *brev;
                    170:        char rev[CVS_REV_BUFSZ];
                    171:
1.123     tobias    172:        branch = brev = NULL;
                    173:
1.86      joris     174:        cvs_log(LP_TRACE, "cvs_commit_check_files(%s)", cf->file_path);
1.44      joris     175:
1.108     joris     176:        if (current_cvsroot->cr_method != CVS_METHOD_LOCAL)
                    177:                cvs_remote_classify_file(cf);
                    178:        else
1.110     joris     179:                cvs_file_classify(cf, cvs_directory_tag);
1.59      joris     180:
                    181:        if (cf->file_type == CVS_DIR) {
                    182:                if (verbosity > 1)
                    183:                        cvs_log(LP_NOTICE, "Examining %s", cf->file_path);
                    184:                return;
                    185:        }
1.32      joris     186:
1.55      joris     187:        if (cf->file_status == FILE_CONFLICT ||
1.79      joris     188:            cf->file_status == FILE_UNLINK) {
1.55      joris     189:                conflicts_found++;
1.79      joris     190:                return;
                    191:        }
1.57      joris     192:
1.63      joris     193:        if (cf->file_status != FILE_REMOVED &&
                    194:            update_has_conflict_markers(cf)) {
1.60      joris     195:                cvs_log(LP_ERR, "conflict: unresolved conflicts in %s from "
                    196:                    "merging, please fix these first", cf->file_path);
                    197:                conflicts_found++;
1.79      joris     198:                return;
1.60      joris     199:        }
                    200:
1.57      joris     201:        if (cf->file_status == FILE_MERGE ||
1.72      joris     202:            cf->file_status == FILE_PATCH ||
1.79      joris     203:            cf->file_status == FILE_CHECKOUT ||
                    204:            cf->file_status == FILE_LOST) {
1.57      joris     205:                cvs_log(LP_ERR, "conflict: %s is not up-to-date",
                    206:                    cf->file_path);
                    207:                conflicts_found++;
1.79      joris     208:                return;
1.57      joris     209:        }
1.55      joris     210:
1.112     joris     211:        if (current_cvsroot->cr_method == CVS_METHOD_LOCAL) {
                    212:                tag = cvs_directory_tag;
                    213:                if (cf->file_ent != NULL)
                    214:                        tag = cf->file_ent->ce_tag;
                    215:
                    216:                if (tag != NULL && cf->file_rcs != NULL) {
                    217:                        brev = rcs_sym_getrev(cf->file_rcs, tag);
                    218:                        if (brev != NULL) {
                    219:                                if (RCSNUM_ISBRANCH(brev))
                    220:                                        goto next;
1.125   ! joris     221:                                rcsnum_free(brev);
1.112     joris     222:                        }
                    223:
                    224:                        brev = rcs_translate_tag(tag, cf->file_rcs);
                    225:
                    226:                        if (brev == NULL) {
                    227:                                fatal("failed to resolve tag: %s",
                    228:                                    cf->file_ent->ce_tag);
                    229:                        }
                    230:
                    231:                        rcsnum_tostr(brev, rev, sizeof(rev));
                    232:                        if ((branch = rcsnum_revtobr(brev)) == NULL) {
                    233:                                cvs_log(LP_ERR, "%s is not a branch revision",
                    234:                                    rev);
                    235:                                conflicts_found++;
1.123     tobias    236:                                rcsnum_free(brev);
1.112     joris     237:                                return;
                    238:                        }
                    239:
                    240:                        if (!RCSNUM_ISBRANCHREV(brev)) {
                    241:                                cvs_log(LP_ERR, "%s is not a branch revision",
                    242:                                    rev);
                    243:                                conflicts_found++;
1.123     tobias    244:                                rcsnum_free(branch);
                    245:                                rcsnum_free(brev);
1.112     joris     246:                                return;
                    247:                        }
                    248:
                    249:                        rcsnum_tostr(branch, rev, sizeof(rev));
                    250:                        if (!RCSNUM_ISBRANCH(branch)) {
                    251:                                cvs_log(LP_ERR, "%s (%s) is not a branch",
                    252:                                    cf->file_ent->ce_tag, rev);
                    253:                                conflicts_found++;
1.123     tobias    254:                                rcsnum_free(branch);
                    255:                                rcsnum_free(brev);
1.112     joris     256:                                return;
                    257:                        }
                    258:                }
                    259:        }
                    260:
                    261: next:
1.123     tobias    262:        if (branch != NULL)
                    263:                rcsnum_free(branch);
                    264:        if (brev != NULL)
                    265:                rcsnum_free(brev);
                    266:
1.55      joris     267:        if (cf->file_status == FILE_ADDED ||
                    268:            cf->file_status == FILE_REMOVED ||
                    269:            cf->file_status == FILE_MODIFIED)
1.110     joris     270:                cvs_file_get(cf->file_path, 0, &files_affected);
1.86      joris     271:
                    272:        switch (cf->file_status) {
                    273:        case FILE_ADDED:
1.110     joris     274:                cvs_file_get(cf->file_path, 0, &files_added);
1.86      joris     275:                break;
                    276:        case FILE_REMOVED:
1.110     joris     277:                cvs_file_get(cf->file_path, 0, &files_removed);
1.86      joris     278:                break;
                    279:        case FILE_MODIFIED:
1.110     joris     280:                cvs_file_get(cf->file_path, 0, &files_modified);
1.86      joris     281:                break;
                    282:        }
1.55      joris     283: }
1.1       jfb       284:
1.55      joris     285: void
                    286: cvs_commit_local(struct cvs_file *cf)
                    287: {
1.112     joris     288:        char *tag;
1.91      joris     289:        BUF *b, *d;
1.112     joris     290:        int onbranch, isnew, histtype;
                    291:        RCSNUM *nrev, *crev, *rrev, *brev;
1.102     xsa       292:        int openflags, rcsflags;
1.119     tobias    293:        char rbuf[CVS_REV_BUFSZ], nbuf[CVS_REV_BUFSZ];
1.56      joris     294:        CVSENTRIES *entlist;
1.100     otto      295:        char attic[MAXPATHLEN], repo[MAXPATHLEN], rcsfile[MAXPATHLEN];
1.17      joris     296:
1.55      joris     297:        cvs_log(LP_TRACE, "cvs_commit_local(%s)", cf->file_path);
1.110     joris     298:        cvs_file_classify(cf, cvs_directory_tag);
1.69      joris     299:
                    300:        if (cvs_noexec == 1)
                    301:                return;
1.35      xsa       302:
1.64      joris     303:        if (cf->file_type != CVS_FILE)
                    304:                fatal("cvs_commit_local: '%s' is not a file", cf->file_path);
                    305:
1.107     joris     306:        if (cf->file_status != FILE_MODIFIED &&
                    307:            cf->file_status != FILE_ADDED &&
                    308:            cf->file_status != FILE_REMOVED) {
                    309:                cvs_log(LP_ERR, "skipping bogus file `%s'", cf->file_path);
                    310:                return;
                    311:        }
                    312:
1.112     joris     313:        onbranch = 0;
                    314:        nrev = RCS_HEAD_REV;
                    315:        crev = NULL;
                    316:        rrev = NULL;
                    317:
1.115     joris     318:        if (cf->file_rcs != NULL && cf->file_rcs->rf_branch != NULL) {
1.114     joris     319:                rcsnum_free(cf->file_rcs->rf_branch);
                    320:                cf->file_rcs->rf_branch = NULL;
                    321:        }
                    322:
1.56      joris     323:        if (cf->file_status == FILE_MODIFIED ||
1.66      joris     324:            cf->file_status == FILE_REMOVED || (cf->file_status == FILE_ADDED
1.93      joris     325:            && cf->file_rcs != NULL && cf->file_rcs->rf_dead == 1)) {
1.112     joris     326:                rrev = rcs_head_get(cf->file_rcs);
                    327:                crev = rcs_head_get(cf->file_rcs);
1.116     tobias    328:                if (crev == NULL || rrev == NULL)
                    329:                        fatal("RCS head empty or missing in %s\n",
                    330:                            cf->file_rcs->rf_path);
1.112     joris     331:
                    332:                tag = cvs_directory_tag;
                    333:                if (cf->file_ent != NULL && cf->file_ent->ce_tag != NULL)
                    334:                        tag = cf->file_ent->ce_tag;
                    335:
                    336:                if (tag != NULL) {
                    337:                        rcsnum_free(crev);
                    338:                        crev = rcs_translate_tag(tag, cf->file_rcs);
                    339:                        if (crev == NULL) {
                    340:                                fatal("failed to resolve existing tag: %s",
                    341:                                    tag);
                    342:                        }
                    343:
                    344:                        if (RCSNUM_ISBRANCHREV(crev)) {
                    345:                                nrev = rcsnum_alloc();
                    346:                                rcsnum_cpy(crev, nrev, 0);
                    347:                                rcsnum_inc(nrev);
                    348:                        } else if (!RCSNUM_ISBRANCH(crev)) {
                    349:                                brev = rcs_sym_getrev(cf->file_rcs, tag);
                    350:                                if (brev == NULL)
                    351:                                        fatal("no more tag?");
                    352:                                nrev = rcsnum_brtorev(brev);
                    353:                                if (nrev == NULL)
                    354:                                        fatal("failed to create branch rev");
1.123     tobias    355:                                rcsnum_free(brev);
1.112     joris     356:                        } else {
                    357:                                fatal("this isnt suppose to happen, honestly");
                    358:                        }
                    359:
                    360:                        rcsnum_free(rrev);
                    361:                        rrev = rcsnum_branch_root(nrev);
                    362:
                    363:                        /* branch stuff was checked in cvs_commit_check_files */
                    364:                        onbranch = 1;
                    365:                }
                    366:
                    367:                rcsnum_tostr(crev, rbuf, sizeof(rbuf));
1.93      joris     368:        } else {
1.61      joris     369:                strlcpy(rbuf, "Non-existent", sizeof(rbuf));
1.93      joris     370:        }
1.61      joris     371:
1.123     tobias    372:        if (rrev != NULL)
                    373:                rcsnum_free(rrev);
1.67      joris     374:        isnew = 0;
1.66      joris     375:        if (cf->file_status == FILE_ADDED) {
1.67      joris     376:                isnew = 1;
1.66      joris     377:                rcsflags = RCS_CREATE;
                    378:                openflags = O_CREAT | O_TRUNC | O_WRONLY;
                    379:                if (cf->file_rcs != NULL) {
1.106     niallo    380:                        if (cf->in_attic == 0)
1.66      joris     381:                                cvs_log(LP_ERR, "warning: expected %s "
                    382:                                    "to be in the Attic", cf->file_path);
                    383:
                    384:                        if (cf->file_rcs->rf_dead == 0)
                    385:                                cvs_log(LP_ERR, "warning: expected %s "
                    386:                                    "to be dead", cf->file_path);
                    387:
                    388:                        cvs_get_repository_path(cf->file_wd, repo, MAXPATHLEN);
1.102     xsa       389:                        (void)xsnprintf(rcsfile, MAXPATHLEN, "%s/%s%s",
1.66      joris     390:                            repo, cf->file_name, RCS_FILE_EXT);
                    391:
                    392:                        if (rename(cf->file_rpath, rcsfile) == -1)
                    393:                                fatal("cvs_commit_local: failed to move %s "
                    394:                                    "outside the Attic: %s", cf->file_path,
                    395:                                    strerror(errno));
                    396:
                    397:                        xfree(cf->file_rpath);
                    398:                        cf->file_rpath = xstrdup(rcsfile);
                    399:
                    400:                        rcsflags = RCS_READ | RCS_PARSE_FULLY;
                    401:                        openflags = O_RDONLY;
                    402:                        rcs_close(cf->file_rcs);
1.67      joris     403:                        isnew = 0;
1.66      joris     404:                }
                    405:
                    406:                cf->repo_fd = open(cf->file_rpath, openflags);
1.61      joris     407:                if (cf->repo_fd < 0)
                    408:                        fatal("cvs_commit_local: %s", strerror(errno));
                    409:
                    410:                cf->file_rcs = rcs_open(cf->file_rpath, cf->repo_fd,
1.103     otto      411:                    rcsflags, 0444);
1.61      joris     412:                if (cf->file_rcs == NULL)
                    413:                        fatal("cvs_commit_local: failed to create RCS file "
                    414:                            "for %s", cf->file_path);
1.71      xsa       415:
                    416:                commit_desc_set(cf);
1.61      joris     417:        }
1.36      joris     418:
1.77      reyk      419:        if (verbosity > 1) {
                    420:                cvs_printf("Checking in %s:\n", cf->file_path);
                    421:                cvs_printf("%s <- %s\n", cf->file_rpath, cf->file_path);
                    422:                cvs_printf("old revision: %s; ", rbuf);
                    423:        }
1.7       jfb       424:
1.112     joris     425:        if (isnew == 0 && onbranch == 0)
                    426:                d = commit_diff(cf, cf->file_rcs->rf_head, 0);
1.7       jfb       427:
1.56      joris     428:        if (cf->file_status == FILE_REMOVED) {
1.112     joris     429:                b = rcs_rev_getbuf(cf->file_rcs, crev, 0);
1.56      joris     430:                if (b == NULL)
1.112     joris     431:                        fatal("cvs_commit_local: failed to get crev");
                    432:        } else if (onbranch == 1) {
                    433:                b = commit_diff(cf, crev, 1);
1.61      joris     434:        } else {
1.73      joris     435:                if ((b = cvs_buf_load_fd(cf->fd, BUF_AUTOEXT)) == NULL)
1.56      joris     436:                        fatal("cvs_commit_local: failed to load file");
                    437:        }
1.7       jfb       438:
1.112     joris     439:        if (isnew == 0 && onbranch == 0) {
                    440:                if (rcs_deltatext_set(cf->file_rcs, crev, d) == -1)
1.61      joris     441:                        fatal("cvs_commit_local: failed to set delta");
                    442:        }
1.3       krapht    443:
1.112     joris     444:        if (rcs_rev_add(cf->file_rcs, nrev, logmsg, -1, NULL) == -1)
1.55      joris     445:                fatal("cvs_commit_local: failed to add new revision");
1.3       krapht    446:
1.112     joris     447:        if (nrev == RCS_HEAD_REV)
                    448:                nrev = cf->file_rcs->rf_head;
                    449:
                    450:        if (rcs_deltatext_set(cf->file_rcs, nrev, b) == -1)
1.55      joris     451:                fatal("cvs_commit_local: failed to set new HEAD delta");
1.3       krapht    452:
1.56      joris     453:        if (cf->file_status == FILE_REMOVED) {
1.112     joris     454:                if (rcs_state_set(cf->file_rcs, nrev, RCS_STATE_DEAD) == -1)
1.56      joris     455:                        fatal("cvs_commit_local: failed to set state");
1.101     xsa       456:        }
                    457:
                    458:        if (cf->file_status == FILE_ADDED && cf->file_ent->ce_opts != NULL) {
                    459:                int kflag;
                    460:
                    461:                kflag = rcs_kflag_get(cf->file_ent->ce_opts + 2);
                    462:                rcs_kwexp_set(cf->file_rcs, kflag);
1.56      joris     463:        }
                    464:
1.55      joris     465:        rcs_write(cf->file_rcs);
1.6       jfb       466:
1.56      joris     467:        if (cf->file_status == FILE_REMOVED) {
1.77      reyk      468:                strlcpy(nbuf, "Removed", sizeof(nbuf));
1.61      joris     469:        } else if (cf->file_status == FILE_ADDED) {
1.66      joris     470:                if (cf->file_rcs->rf_dead == 1)
1.77      reyk      471:                        strlcpy(nbuf, "Initial Revision", sizeof(nbuf));
1.63      joris     472:                else
1.112     joris     473:                        rcsnum_tostr(nrev, nbuf, sizeof(nbuf));
1.56      joris     474:        } else if (cf->file_status == FILE_MODIFIED) {
1.112     joris     475:                rcsnum_tostr(nrev, nbuf, sizeof(nbuf));
1.56      joris     476:        }
                    477:
1.77      reyk      478:        if (verbosity > 1)
                    479:                cvs_printf("new revision: %s\n", nbuf);
1.3       krapht    480:
1.55      joris     481:        (void)unlink(cf->file_path);
                    482:        (void)close(cf->fd);
                    483:        cf->fd = -1;
1.56      joris     484:
                    485:        if (cf->file_status != FILE_REMOVED) {
1.112     joris     486:                cvs_checkout_file(cf, nrev, NULL, CO_COMMIT);
1.56      joris     487:        } else {
                    488:                entlist = cvs_ent_open(cf->file_wd);
                    489:                cvs_ent_remove(entlist, cf->file_name);
                    490:                cvs_ent_close(entlist, ENT_SYNC);
1.64      joris     491:
                    492:                cvs_get_repository_path(cf->file_wd, repo, MAXPATHLEN);
                    493:
1.102     xsa       494:                (void)xsnprintf(attic, MAXPATHLEN, "%s/%s",
                    495:                    repo, CVS_PATH_ATTIC);
1.64      joris     496:
                    497:                if (mkdir(attic, 0755) == -1 && errno != EEXIST)
                    498:                        fatal("cvs_commit_local: failed to create Attic");
                    499:
1.102     xsa       500:                (void)xsnprintf(attic, MAXPATHLEN, "%s/%s/%s%s", repo,
1.64      joris     501:                    CVS_PATH_ATTIC, cf->file_name, RCS_FILE_EXT);
                    502:
                    503:                if (rename(cf->file_rpath, attic) == -1)
                    504:                        fatal("cvs_commit_local: failed to move %s to Attic",
                    505:                            cf->file_path);
                    506:
1.85      joris     507:                if (cvs_server_active == 1)
                    508:                        cvs_server_update_entry("Remove-entry", cf);
1.56      joris     509:        }
1.3       krapht    510:
1.77      reyk      511:        if (verbosity > 1)
                    512:                cvs_printf("done\n");
                    513:        else {
                    514:                cvs_log(LP_NOTICE, "checking in '%s'; revision %s -> %s",
                    515:                    cf->file_path, rbuf, nbuf);
                    516:        }
1.107     joris     517:
                    518:        switch (cf->file_status) {
                    519:        case FILE_MODIFIED:
                    520:                histtype = CVS_HISTORY_COMMIT_MODIFIED;
                    521:                break;
                    522:        case FILE_ADDED:
                    523:                histtype = CVS_HISTORY_COMMIT_ADDED;
                    524:                break;
                    525:        case FILE_REMOVED:
                    526:                histtype = CVS_HISTORY_COMMIT_REMOVED;
                    527:                break;
                    528:        }
1.125   ! joris     529:
        !           530:        if (crev != NULL)
        !           531:                rcsnum_free(crev);
1.107     joris     532:
                    533:        cvs_history_add(histtype, cf, NULL);
1.39      xsa       534: }
                    535:
1.91      joris     536: static BUF *
1.112     joris     537: commit_diff(struct cvs_file *cf, RCSNUM *rev, int reverse)
1.39      xsa       538: {
1.112     joris     539:        char *p1, *p2, *p;
1.122     tobias    540:        BUF *b;
1.97      joris     541:
                    542:        (void)xasprintf(&p1, "%s/diff1.XXXXXXXXXX", cvs_tmpdir);
1.39      xsa       543:
1.63      joris     544:        if (cf->file_status == FILE_MODIFIED ||
                    545:            cf->file_status == FILE_ADDED) {
1.122     tobias    546:                if ((b = cvs_buf_load_fd(cf->fd, BUF_AUTOEXT)) == NULL)
1.118     tobias    547:                        fatal("commit_diff: failed to load '%s'",
1.56      joris     548:                            cf->file_path);
1.122     tobias    549:                cvs_buf_write_stmp(b, p1, NULL);
                    550:                cvs_buf_free(b);
1.63      joris     551:        } else {
1.112     joris     552:                rcs_rev_write_stmp(cf->file_rcs, rev, p1, 0);
1.56      joris     553:        }
1.3       krapht    554:
1.97      joris     555:        (void)xasprintf(&p2, "%s/diff2.XXXXXXXXXX", cvs_tmpdir);
1.117     tobias    556:        rcs_rev_write_stmp(cf->file_rcs, rev, p2, RCS_KWEXP_NONE);
1.55      joris     557:
1.122     tobias    558:        if ((b = cvs_buf_alloc(128, BUF_AUTOEXT)) == NULL)
1.112     joris     559:                fatal("commit_diff: failed to create diff buf");
1.55      joris     560:
                    561:        diff_format = D_RCSDIFF;
1.112     joris     562:
                    563:        if (reverse == 1) {
                    564:                p = p1;
                    565:                p1 = p2;
                    566:                p2 = p;
                    567:        }
                    568:
1.122     tobias    569:        if (cvs_diffreg(p1, p2, b) == D_ERROR)
1.112     joris     570:                fatal("commit_diff: failed to get RCS patch");
1.96      joris     571:
                    572:        xfree(p1);
                    573:        xfree(p2);
1.55      joris     574:
1.122     tobias    575:        return (b);
1.71      xsa       576: }
                    577:
                    578: static void
                    579: commit_desc_set(struct cvs_file *cf)
                    580: {
                    581:        BUF *bp;
1.102     xsa       582:        int fd;
1.100     otto      583:        char desc_path[MAXPATHLEN], *desc;
1.71      xsa       584:
1.102     xsa       585:        (void)xsnprintf(desc_path, MAXPATHLEN, "%s/%s%s",
1.71      xsa       586:            CVS_PATH_CVSDIR, cf->file_name, CVS_DESCR_FILE_EXT);
                    587:
1.100     otto      588:        if ((fd = open(desc_path, O_RDONLY)) == -1)
1.71      xsa       589:                return;
                    590:
1.78      joris     591:        bp = cvs_buf_load_fd(fd, BUF_AUTOEXT);
1.71      xsa       592:        cvs_buf_putc(bp, '\0');
                    593:        desc = cvs_buf_release(bp);
                    594:
                    595:        rcs_desc_set(cf->file_rcs, desc);
                    596:
1.76      joris     597:        (void)close(fd);
1.71      xsa       598:        (void)cvs_unlink(desc_path);
                    599:
                    600:        xfree(desc);
1.1       jfb       601: }