home *** CD-ROM | disk | FTP | other *** search
/ Geek Gadgets 1 / ADE-1.bin / ade-dist / cvs-1.8.7-src.tgz / tar.out / fsf / cvs / src / repos.c < prev    next >
C/C++ Source or Header  |  1996-09-28  |  4KB  |  135 lines

  1. /*
  2.  * Copyright (c) 1992, Brian Berliner and Jeff Polk
  3.  * Copyright (c) 1989-1992, Brian Berliner
  4.  * 
  5.  * You may distribute under the terms of the GNU General Public License as
  6.  * specified in the README file that comes with the CVS 1.4 kit.
  7.  */
  8.  
  9. #include "cvs.h"
  10.  
  11. /* Determine the name of the RCS repository for directory DIR in the
  12.    current working directory, or for the current working directory
  13.    itself if DIR is NULL.  Returns the name in a newly-malloc'd
  14.    string.  On error, gives a fatal error and does not return.
  15.    UPDATE_DIR is the path from where cvs was invoked (for use in error
  16.    messages), and should contain DIR as its last component.
  17.    UPDATE_DIR can be NULL to signify the directory in which cvs was
  18.    invoked.  */
  19.  
  20. char *
  21. Name_Repository (dir, update_dir)
  22.     char *dir;
  23.     char *update_dir;
  24. {
  25.     FILE *fpin;
  26.     char *ret, *xupdate_dir;
  27.     char repos[PATH_MAX];
  28.     char path[PATH_MAX];
  29.     char tmp[PATH_MAX];
  30.     char *cp;
  31.  
  32.     if (update_dir && *update_dir)
  33.     xupdate_dir = update_dir;
  34.     else
  35.     xupdate_dir = ".";
  36.  
  37.     if (dir != NULL)
  38.     (void) sprintf (tmp, "%s/%s", dir, CVSADM_REP);
  39.     else
  40.     (void) strcpy (tmp, CVSADM_REP);
  41.  
  42.     /*
  43.      * The assumption here is that the repository is always contained in the
  44.      * first line of the "Repository" file.
  45.      */
  46.     fpin = CVS_FOPEN (tmp, "r");
  47.  
  48.     if (fpin == NULL)
  49.     {
  50.     int save_errno = errno;
  51.     char cvsadm[PATH_MAX];
  52.  
  53.     if (dir != NULL)
  54.         (void) sprintf (cvsadm, "%s/%s", dir, CVSADM);
  55.     else
  56.         (void) strcpy (cvsadm, CVSADM);
  57.  
  58.     if (!isdir (cvsadm))
  59.     {
  60.         error (0, 0, "in directory %s:", xupdate_dir);
  61.         error (1, 0, "there is no version here; do '%s checkout' first",
  62.            program_name);
  63.     }
  64.  
  65.     if (existence_error (save_errno))
  66.     {
  67.         error (0, 0, "in directory %s:", xupdate_dir);
  68.         error (1, 0, "*PANIC* administration files missing");
  69.     }
  70.  
  71.     error (1, save_errno, "cannot open %s", tmp);
  72.     }
  73.  
  74.     if (fgets (repos, PATH_MAX, fpin) == NULL)
  75.     {
  76.     error (0, 0, "in directory %s:", xupdate_dir);
  77.     error (1, errno, "cannot read %s", CVSADM_REP);
  78.     }
  79.     (void) fclose (fpin);
  80.     if ((cp = strrchr (repos, '\n')) != NULL)
  81.     *cp = '\0';            /* strip the newline */
  82.  
  83.     /*
  84.      * If this is a relative repository pathname, turn it into an absolute
  85.      * one by tacking on the CVSROOT environment variable. If the CVSROOT
  86.      * environment variable is not set, die now.
  87.      */
  88.     if (strcmp (repos, "..") == 0 || strncmp (repos, "../", 3) == 0)
  89.     {
  90.     error (0, 0, "in directory %s:", xupdate_dir);
  91.     error (0, 0, "`..'-relative repositories are not supported.");
  92.     error (1, 0, "illegal source repository");
  93.     }
  94.     if (! isabsolute(repos))
  95.     {
  96.     if (CVSroot_original == NULL)
  97.     {
  98.         error (0, 0, "in directory %s:", xupdate_dir);
  99.         error (0, 0, "must set the CVSROOT environment variable\n");
  100.         error (0, 0, "or specify the '-d' option to %s.", program_name);
  101.         error (1, 0, "illegal repository setting");
  102.     }
  103.     (void) strcpy (path, repos);
  104.     (void) sprintf (repos, "%s/%s", CVSroot_directory, path);
  105.     }
  106.  
  107.     /* allocate space to return and fill it in */
  108.     strip_path (repos);
  109.     ret = xstrdup (repos);
  110.     return (ret);
  111. }
  112.  
  113. /*
  114.  * Return a pointer to the repository name relative to CVSROOT from a
  115.  * possibly fully qualified repository
  116.  */
  117. char *
  118. Short_Repository (repository)
  119.     char *repository;
  120. {
  121.     if (repository == NULL)
  122.     return (NULL);
  123.  
  124.     /* If repository matches CVSroot at the beginning, strip off CVSroot */
  125.     /* And skip leading '/' in rep, in case CVSroot ended with '/'. */
  126.     if (strncmp (CVSroot_directory, repository,
  127.          strlen (CVSroot_directory)) == 0)
  128.     {
  129.     char *rep = repository + strlen (CVSroot_directory);
  130.     return (*rep == '/') ? rep+1 : rep;
  131.     }
  132.     else
  133.     return (repository);
  134. }
  135.