home *** CD-ROM | disk | FTP | other *** search
/ OpenStep 4.2J (Developer) / os42jdev.iso / NextDeveloper / Source / GNU / uucp / uuname / uuname.c < prev   
C/C++ Source or Header  |  1995-08-20  |  5KB  |  203 lines

  1. /* uuname.c
  2.    List the names of known remote UUCP sites.
  3.  
  4.    Copyright (C) 1991, 1992, 1993, 1994, 1995 Ian Lance Taylor
  5.  
  6.    This file is part of the Taylor UUCP package.
  7.  
  8.    This program is free software; you can redistribute it and/or
  9.    modify it under the terms of the GNU General Public License as
  10.    published by the Free Software Foundation; either version 2 of the
  11.    License, or (at your option) any later version.
  12.  
  13.    This program is distributed in the hope that it will be useful, but
  14.    WITHOUT ANY WARRANTY; without even the implied warranty of
  15.    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
  16.    General Public License for more details.
  17.  
  18.    You should have received a copy of the GNU General Public License
  19.    along with this program; if not, write to the Free Software
  20.    Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
  21.  
  22.    The author of the program may be contacted at ian@airs.com or
  23.    c/o Cygnus Support, 48 Grove Street, Somerville, MA 02144.
  24.    */
  25.  
  26. #include "uucp.h"
  27.  
  28. #if USE_RCS_ID
  29. const char uuname_rcsid[] = "$Id: uuname.c,v 1.21 1995/06/29 19:37:53 ian Rel $";
  30. #endif
  31.  
  32. #include "getopt.h"
  33.  
  34. #include "uudefs.h"
  35. #include "uuconf.h"
  36. #include "system.h"
  37.  
  38. /* Local functions.  */
  39.  
  40. static void unusage P((void));
  41. static void unhelp P((void));
  42.  
  43. /* Long getopt options.  */
  44. static const struct option asNlongopts[] =
  45. {
  46.   { "aliases", no_argument, NULL, 'a' },
  47.   { "local", no_argument, NULL, 'l' },
  48.   { "config", required_argument, NULL, 'I' },
  49.   { "debug", required_argument, NULL, 'x' },
  50.   { "version", no_argument, NULL, 'v' },
  51.   { "help", no_argument, NULL, 1 },
  52.   { NULL, 0, NULL, 0 }
  53. };
  54.  
  55. int
  56. main (argc, argv)
  57.      int argc;
  58.      char **argv;
  59. {
  60.   /* -a: display aliases.  */
  61.   boolean falias = FALSE;
  62.   /* -l: if true, output local node name.  */
  63.   boolean flocal = FALSE;
  64.   /* -I: configuration file name.  */
  65.   const char *zconfig = NULL;
  66.   int iopt;
  67.   pointer puuconf;
  68.   int iuuconf;
  69.  
  70.   zProgram = argv[0];
  71.  
  72.   while ((iopt = getopt_long (argc, argv, "alI:vx:", asNlongopts,
  73.                   (int *) NULL)) != EOF)
  74.     {
  75.       switch (iopt)
  76.     {
  77.     case 'a':
  78.       /* Display aliases.  */
  79.       falias = TRUE;
  80.       break;
  81.  
  82.     case 'l':
  83.       /* Output local node name.  */
  84.       flocal = TRUE;
  85.       break;
  86.  
  87.     case 'I':
  88.       /* Configuration file name.  */
  89.       if (fsysdep_other_config (optarg))
  90.         zconfig = optarg;
  91.       break;
  92.  
  93.     case 'x':
  94. #if DEBUG > 1
  95.       /* Set debugging level.  */
  96.       iDebug |= idebug_parse (optarg);
  97. #endif
  98.       break;
  99.  
  100.     case 'v':
  101.       /* Print version and exit.  */
  102.       printf ("%s: Taylor UUCP %s, copyright (C) 1991, 92, 93, 94, 1995 Ian Lance Taylor\n",
  103.           zProgram, VERSION);
  104.       exit (EXIT_SUCCESS);
  105.       /*NOTREACHED*/
  106.  
  107.     case 1:
  108.       /* --help.  */
  109.       unhelp ();
  110.       exit (EXIT_SUCCESS);
  111.       /*NOTREACHED*/
  112.  
  113.     case 0:
  114.       /* Long option found and flag set.  */
  115.       break;
  116.  
  117.     default:
  118.       unusage ();
  119.       /*NOTREACHED*/
  120.     }
  121.     }
  122.  
  123.   if (optind != argc)
  124.     unusage ();
  125.  
  126.   iuuconf = uuconf_init (&puuconf, (const char *) NULL, zconfig);
  127.   if (iuuconf != UUCONF_SUCCESS)
  128.     ulog_uuconf (LOG_FATAL, puuconf, iuuconf);
  129.  
  130. #if DEBUG > 1
  131.   {
  132.     const char *zdebug;
  133.  
  134.     iuuconf = uuconf_debuglevel (puuconf, &zdebug);
  135.     if (iuuconf != UUCONF_SUCCESS)
  136.       ulog_uuconf (LOG_FATAL, puuconf, iuuconf);
  137.     if (zdebug != NULL)
  138.       iDebug |= idebug_parse (zdebug);
  139.   }
  140. #endif
  141.  
  142.   usysdep_initialize (puuconf, INIT_SUID | INIT_NOCHDIR);
  143.  
  144.   if (flocal)
  145.     {
  146.       const char *zlocalname;
  147.  
  148.       iuuconf = uuconf_localname (puuconf, &zlocalname);
  149.       if (iuuconf == UUCONF_NOT_FOUND)
  150.     {
  151.       zlocalname = zsysdep_localname ();
  152.       if (zlocalname == NULL)
  153.         usysdep_exit (FALSE);
  154.     }
  155.       else if (iuuconf != UUCONF_SUCCESS)
  156.     ulog_uuconf (LOG_FATAL, puuconf, iuuconf);
  157.       printf ("%s\n", zlocalname);
  158.     }
  159.   else
  160.     {
  161.       char **pznames, **pz;
  162.  
  163.       iuuconf = uuconf_system_names (puuconf, &pznames, falias);
  164.       if (iuuconf != UUCONF_SUCCESS)
  165.     ulog_uuconf (LOG_FATAL, puuconf, iuuconf);
  166.  
  167.       for (pz = pznames; *pz != NULL; pz++)
  168.     printf ("%s\n", *pz);
  169.     }
  170.  
  171.   usysdep_exit (TRUE);
  172.  
  173.   /* Avoid warnings about not returning a value.  */
  174.   return 0;
  175. }
  176.  
  177. /* Print a usage message and die.  */
  178.  
  179. static void
  180. unusage ()
  181. {
  182.   fprintf (stderr,
  183.        "Usage: %s [-a] [-l] [-I file]\n", zProgram);
  184.   fprintf (stderr, "Use %s --help for help\n", zProgram);
  185.   exit (EXIT_FAILURE);
  186. }
  187.  
  188. /* Print a help message.  */
  189.  
  190. static void unhelp ()
  191. {
  192.   printf ("Taylor UUCP %s, copyright (C) 1991, 92, 93, 94, 1995 Ian Lance Taylor\n",
  193.        VERSION);
  194.   printf ("Usage: %s [-a] [-l] [-I file]\n", zProgram);
  195.   printf (" -a,--aliases: display aliases\n");
  196.   printf (" -l,--local: print local name\n");
  197. #if HAVE_TAYLOR_CONFIG
  198.   printf (" -I,--config file: Set configuration file to use\n");
  199. #endif /* HAVE_TAYLOR_CONFIG */
  200.   printf (" -v,--version: Print version and exit\n");
  201.   printf (" --help: Print help and exit\n");
  202. }
  203.