diff lib-src/emacsclient.c @ 16030:fb38057473c8

(decode_options): New function. (main, both versions): Call decode_options. (print_help_and_exit): New function. (VERSION): New macro
author Richard M. Stallman <rms@gnu.org>
date Sun, 01 Sep 1996 18:25:21 +0000
parents 7284f973fc42
children a1290c4159b5
line wrap: on
line diff
--- a/lib-src/emacsclient.c	Sun Sep 01 17:11:14 1996 +0000
+++ b/lib-src/emacsclient.c	Sun Sep 01 18:25:21 1996 +0000
@@ -27,9 +27,86 @@
 #undef close
 #undef signal
 
+#include <stdio.h>
+#include <getopt.h>
 
+char *getenv (), *getwd ();
+char *getcwd ();
+int geteuid ();
+
+/* This is defined with -D from the compilation command,
+   which extracts it from ../lisp/version.el.  */
+
+#ifndef VERSION
+#define VERSION "unspecified"
+#endif
+
+/* Name used to invoke this program.  */
+char *progname;
+
+/* Nonzero means don't wait for a response from Emacs.  --nowait.  */
+int nowait = 0;
+
+struct option longopts[] =
+{
+  { "nowait",	no_argument,	   NULL, 'n' },
+  { "help",	no_argument,	   NULL, 'H' },
+  { "version",	no_argument,	   NULL, 'V' },
+  { 0 }
+};
+
+/* Decode the options from argv and argc.
+   Return the number of remaining arguments.  */
+
+int
+decode_options (argc, argv)
+     int argc;
+     char **argv;
+{
+  while (1)
+    {
+      int opt = getopt_long (argc, argv,
+			     "VHn", longopts, 0);
+
+      if (opt == EOF)
+	break;
+
+      switch (opt)
+	{
+	case 0:
+	  /* If getopt returns 0, then it has already processed a
+	     long-named option.  We should do nothing.  */
+	  break;
+
+	case 'n':
+	  nowait = 1;
+	  break;
+
+	case 'V':
+	  fprintf (stderr, "Version %s\n", VERSION);
+	  exit (1);
+	  break;
+
+	case 'H':
+	default:
+	  print_help_and_exit ();
+	}
+    }
+
+  return argc;
+}
+
+print_help_and_exit ()
+{
+  fprintf (stderr,
+	   "Usage: %s [-n] [--nowait] [+linenumber] filename\n",
+	   progname);
+  fprintf (stderr,
+	   "Report bugs to bug-gnu-emacs@prep.ai.mit.edu.\n");
+  exit (1);
+}
+
 #if !defined (HAVE_SOCKETS) && !defined (HAVE_SYSVIPC)
-#include <stdio.h>
 
 main (argc, argv)
      int argc;
@@ -50,7 +127,6 @@
 #include <sys/socket.h>
 #include <sys/un.h>
 #include <sys/stat.h>
-#include <stdio.h>
 #include <errno.h>
 
 extern char *strerror ();
@@ -67,17 +143,19 @@
   struct sockaddr_un server;
   char *homedir, *cwd, *str;
   char string[BUFSIZ];
+  int args_left;
 
-  char *getenv (), *getwd ();
-  char *getcwd ();
-  int geteuid ();
-  int nowait = 0;
+  progname = argv[0];
+
+  /* Process options.  */
+  args_left = decode_options (argc, argv);
+
+  /* Advance argv and decrement argc for the options that were skipped.  */
+  argv += argc - args_left;
+  argc = args_left;
 
   if (argc < 2)
-    {
-      fprintf (stderr, "Usage: %s [+linenumber] filename\n", argv[0]);
-      exit (1);
-    }
+    print_help_and_exit ();
 
   /* 
    * Open up an AF_UNIX socket in this person's home directory
@@ -239,14 +317,18 @@
   char gwdirb[BUFSIZ];
   char *cwd;
   char *temp;
-  char *progname = argv[0];
-  int nowait = 0;
+
+  progname = argv[0];
+
+  /* Process options.  */
+  args_left = decode_options (argc, argv);
+
+  /* Advance argv and decrement argc for the options that were skipped.  */
+  argv += argc - args_left;
+  argc = args_left;
 
   if (argc < 2)
-    {
-      fprintf (stderr, "Usage: %s [+linenumber] filename\n", argv[0]);
-      exit (1);
-    }
+    print_help_and_exit ();
 
   /*
    * Create a message queue using ~/.emacs-server as the path for ftok