runadm.c
上传用户:dgyhgb
上传日期:2007-01-07
资源大小:676k
文件大小:2k
源码类别:

SQL Server

开发平台:

Unix_Linux

  1. /*
  2.  *  runadm.c  -  test of existence of DB Dispatcher and run it if absent
  3.  *
  4.  *  This file is a part of GNU SQL Server
  5.  *
  6.  *  Copyright (c) 1996, 1997, Free Software Foundation, Inc
  7.  *  Developed at the Institute of System Programming
  8.  *  This file is written by Konstantin Dyshlevoi.
  9.  *
  10.  *  This program is free software; you can redistribute it and/or modify
  11.  *  it under the terms of the GNU General Public License as published by
  12.  *  the Free Software Foundation; either version 2 of the License, or
  13.  *  (at your option) any later version.
  14.  *
  15.  *  This program is distributed in the hope that it will be useful,
  16.  *  but WITHOUT ANY WARRANTY; without even the implied warranty of
  17.  *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  18.  *  GNU General Public License for more details.
  19.  *
  20.  *  You should have received a copy of the GNU General Public License
  21.  *  along with this program; if not, write to the Free Software
  22.  *  Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
  23.  *
  24.  *  Contacts: gss@ispras.ru
  25.  *
  26.  */
  27. /* $Id: runadm.c,v 1.245 1997/03/31 03:46:38 kml Exp $ */
  28. #include "setup_os.h"
  29. #include <stdio.h>
  30. #include <sys/types.h>
  31. #ifdef HAVE_UNISTD_H
  32. #include <unistd.h>
  33. #endif
  34. #include "pupsi.h"
  35. #include "dispatch.h"
  36. #define CREATE_WAIT_TIME 60
  37. int
  38. main (i4_t argc, char **argv)
  39. {
  40.   CLIENT *clnt;
  41.   pid_t pid;
  42.   i4_t rest_time = CREATE_WAIT_TIME;
  43.   
  44.   if ((clnt = clnt_create ("localhost", SQL_DISP, SQL_DISP_ONE, "tcp")))
  45.     {
  46.       clnt_destroy (clnt);
  47.       return 0; /* Dispatcher already exists */
  48.     }
  49.   SVC_UNREG(SQL_DISP, SQL_DISP_ONE);
  50.   
  51.   if ((pid = fork ())< 0)
  52.     {
  53.       perror ("fork adm");
  54.       exit (1);
  55.     }
  56.   if (pid == 0)
  57.     {
  58.       printf ("TESTADM: before execvp()n");
  59.       argv[0] = GSQL_ROOT_DIR "/adm";
  60.       argv[1] = NULL;
  61.       execvp (*argv, argv);
  62.     }
  63.   else
  64.     while (1)
  65.       {
  66. if ((clnt = clnt_create ("localhost", SQL_DISP, SQL_DISP_ONE, "tcp")))
  67.   {
  68.     clnt_destroy (clnt);
  69.     break;
  70.   }
  71. if (--rest_time)
  72.   sleep (1);
  73. else
  74.   {
  75.     printf ("Can't connect to server");
  76.     break;
  77.   }
  78. printf ("Wait_create: sleep");
  79.       }
  80.   exit (0);
  81. }