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

SQL Server

开发平台:

Unix_Linux

  1. /*
  2.  *  dispatch.x  -  GNU SQL adminstrator protocol interface
  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 Michael Kimelman.
  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.  *  Contact: gss@ispras.ru
  25.  *
  26.  */
  27. #ifdef RPC_HDR
  28. %#include "setup_os.h"
  29. %extern long adm_rpc_port;
  30. %void fix_adm_port __P((char* opt));
  31. /* renamed main() declaration */ 
  32. %#ifdef RPCMAIN_PROTO
  33. %int adm_rpc_start __P((int,char**));   
  34. %#define ADM_RPC_START adm_rpc_start(argc,argv) 
  35. %#else
  36. %int adm_rpc_start __P((void));
  37. %#define ADM_RPC_START adm_rpc_start() 
  38. %#endif
  39. #endif
  40. #ifdef RPC_SVC
  41. %#define main adm_rpc_start
  42. %#define RPC_SVC_FG
  43. #endif
  44. enum rpc_svc_t {
  45.   BOOT_SVC   = 0,   
  46.   DYNAMIC_SVC,
  47.   COMPILE_SVC = DYNAMIC_SVC,
  48.   INTERPR_SVC = DYNAMIC_SVC
  49. };
  50. typedef opaque opq<>;
  51. struct res
  52. {
  53.   opq    proc_id;
  54.   int    rpc_id;
  55. };
  56. struct init_arg
  57. {
  58.   string    user_name<>;
  59.   int       wait_time;  /* non call window */
  60.   int       total_time; /* whole transaction time window - enforce to stop after */
  61.   int       type;       /* type of requiered service */
  62.   int       need_gdb;   
  63.   string    x_server<>;
  64. };
  65. program  SQL_DISP {  
  66.   version SQL_DISP_ONE {
  67.     res  CREATE_TRANSACTION (init_arg) = 1;
  68.     int  IS_READY           (opq)      = 2;
  69.     int  KILL_ALL           (int)      = 3;
  70.     int  TRN_KILL           (opq)      = 4;
  71.     int  DISP_FINIT         (int)      = 5;
  72.     int  COPY_LJ            (opq)      = 6;
  73.     int  CHANGE_PARAMS      (int)      = 7;
  74.   } = 1;
  75. } = adm_rpc_port;
  76. #ifdef RPC_HDR
  77. %#define DEFAULT_TRN (SQL_DISP + 1)
  78. #endif
  79. #ifdef RPC_XDR
  80. %long adm_rpc_port = 0x30001001;
  81. %
  82. %void fix_adm_port(char* opt)
  83. %{
  84. %  static int have_got = 0;
  85. %  if (opt)
  86. %    {
  87. %      adm_rpc_port = atol(opt);
  88. %      have_got = 1;
  89. %    }
  90. %  else if (!have_got)
  91. %    {
  92. %      char *s = getenv("GSSPORT");
  93. %      if (s)
  94. %        adm_rpc_port = atol(s);
  95. %      have_got = 1;
  96. %    }
  97. %}
  98. #endif