home *** CD-ROM | disk | FTP | other *** search
/ Liren Large Software Subsidy 5 / 05.iso / a / a025 / 6.ddi / SRVSTRUC.H < prev    next >
Encoding:
C/C++ Source or Header  |  1992-09-15  |  13.6 KB  |  335 lines

  1.  
  2.  
  3. #pragma pack( 2 )   // pack structures on word boundries
  4.  
  5. //
  6. // define structures
  7. //
  8.  
  9. typedef struct translation_info
  10. {
  11.     BOOL flag;                // data translation flag
  12.     void (*int2)(short*);        // 2-byte integer swap function
  13.     void (*int4)(long*);            // 4-byte integer swap function
  14.     void (*recvflt)(float*);    // receive 8-byte float translation function
  15.     void (*sendflt)(float*);    // send 8-byte float translation function
  16.    void (*recvflt4)(float*);    // receive 4-byte float translation function
  17.     void (*sendflt4)(float*);    // send 4-byte float translation function
  18.     void (*recvchar)(char *, int);     // ASCII translation function
  19.     void (*sendchar)(char *, int);     // ASCII translation function
  20.     void (*twoint4)(char *);    // 2 4-byte integer swap function
  21.     void (*twoint2)(char *);    // 2 2-byte interger swap function
  22. } TRANSLATION_INFO;
  23.  
  24. //  SRV_LOGIN
  25. //     The (TDS 4.0) login record received from the server client at login time.
  26. //
  27.  
  28. typedef struct srv_loginrec {
  29.     BYTE lhostname[SRV_MAXNAME];    // name of host or generic
  30.     BYTE lhostnlen;         // length of lhostname
  31.     BYTE lusername[SRV_MAXNAME];    // name of user
  32.     BYTE lusernlen;         // length of lusername
  33.     BYTE lpw[SRV_MAXNAME];  // password (plaintext)
  34.     BYTE lpwnlen;           // length of lpw
  35.     BYTE lhostproc[SRV_MAXNAME];    // host process identification
  36.     BYTE lhplen;            // length of host process id
  37.     BYTE lint2;             // type of int2 on this host
  38.     BYTE lint4;             // type of int4 on this host
  39.     BYTE lchar;             // type of char
  40.     BYTE lflt;              // type of float
  41.     BYTE ldate;             // type of datetime
  42.     BYTE lusedb;            // notify on exec of use db cmd
  43.     BYTE ldmpld;            // disallow use of dump/load and bulk insert
  44.     BYTE linterface;        // SQL interface type
  45.     BYTE ltype;             // type of network connection
  46.     BYTE spare[7];          // spare fields
  47.     BYTE lappname[SRV_MAXNAME]; // application name
  48.     BYTE lappnlen;          // length of appl name
  49.     BYTE lservname[SRV_MAXNAME];    // name of server
  50.     BYTE lservnlen;         // length of lservname
  51.     BYTE lrempw[0xff];      // passwords for remote servers
  52.     BYTE lrempwlen;         // length of lrempw
  53.     BYTE ltds[4];           // tds version
  54.     BYTE lprogname[DBPROGNLEN]; // client program name
  55.     BYTE lprognlen;         // length of client program name
  56.     BYTE lprogvers[4];      // client program version
  57.     BYTE lnoshort;          // NEW: auto convert of short datatypes
  58.     BYTE lflt4;             // NEW: type of flt4 on this host
  59.     BYTE ldate4;            // NEW: type of date4 on this host
  60.     BYTE llanguage[SRV_MAXNAME];    // NEW: initial language
  61.     BYTE llanglen;          // NEW: length of language
  62.     BYTE lsetlang;          // NEW: notify on language change
  63.     short slhier;           // NEW: security label hierarchy
  64.     BYTE slcomp[8];         // NEW: security components
  65.     short slspare;          // NEW: security label spare
  66.     BYTE slrole;            // NEW: security login role
  67.     BYTE ldummy[2];         // NEW: pad to longword
  68.     int extra_data_len;     // length of extra data
  69.     void FAR *extra_data;   // pointer to extra data
  70.  
  71. } SRV_LOGINREC;
  72.  
  73. //
  74. //  SRV_LOGIN_OLDTDS
  75. //     The login record received from "old" TDS 2.0 or 3.4 server clients.
  76. //     The format is basically the same as 4.0, it is just shorter (no server
  77. //     name or password, etc appended at the end).
  78. //
  79. typedef struct srv_login_oldtds {
  80.     BYTE lhostname[SRV_MAXNAME];    // name of host or generic
  81.     BYTE lhostnlen;         // length of lhostname
  82.     BYTE lusername[SRV_MAXNAME];    // name of user
  83.     BYTE lusernlen;         // length of lusername
  84.     BYTE lpw[SRV_MAXNAME];  // password (plaintext)
  85.     BYTE lpwnlen;           // length of lpw
  86.     BYTE lhostproc[SRV_MAXNAME];    // host process identification
  87.     BYTE lhplen;            // length of host process id
  88.     BYTE lint2;             // type of int2 on this host
  89.     BYTE lint4;             // type of int4 on this host
  90.     BYTE lchar;             // type of char
  91.     BYTE lflt;              // type of float
  92.     BYTE ldate;             // type of datetime
  93.     BYTE lusedb;            // notify on exec of use db cmd
  94.     BYTE ldmpld;            // disallow use of dump/load and bulk insert
  95.     BYTE linterface;        // SQL interface type
  96.     BYTE spare[8];          // spare fields
  97.     BYTE lappname[SRV_MAXNAME]; // application name
  98.     BYTE lappnlen;          // length of appl name
  99.     BYTE ldummy;            // pad length to even boundary
  100.  
  101. } SRV_LOGIN_OLDTDS;
  102.  
  103. typedef struct srv_config {
  104.     unsigned connections;   // maximum allowed client connections
  105.     unsigned stacksize;     // stack size of new threads created
  106.     BOOL log_file_open;     // flag indicating log file open
  107.     unsigned short log_handle;  // handle of openned log file
  108.     char log_file_name[SRV_MAXFILENAME];    // name of log file
  109.     BOOL coexist;
  110. #ifdef BRIDGE
  111.     char remote_name[SRV_MAXFILENAME]; // Client side name
  112. #endif
  113. } SRV_CONFIG;
  114.  
  115. //
  116. //  SRV_TDSHDR
  117. //  The first 8 bytes of each network packet constitute the packet
  118. //  header.
  119. //
  120. typedef struct srv_tdshdr {
  121.     BYTE type;              // io packet type
  122.     BYTE status;            // io packet status
  123.     DBUSMALLINT length;     // io packet length
  124.     DBUSMALLINT channel;    // io packet subchannel
  125.     BYTE packet;            // io packet number
  126.     BYTE window;            // io packet window size
  127.  
  128. } SRV_TDSHDR;
  129.  
  130. // Packet size
  131. #define SRV_SERVBSIZE  512
  132.  
  133. #ifdef NETLIBS
  134. #define SRV_SERVNETFUNCS    8
  135. #define SRV_CLIENTNETFUNCS    10
  136. typedef long (pascal *LGFARPROC)();
  137. #endif
  138.  
  139. //
  140. //  SRV_IO
  141. //  This is the data structure used for reading and writing client
  142. //  connection data for a particular server task.
  143. //
  144. typedef struct srv_io {
  145. #ifdef NETLIBS
  146.      void FAR *    server_ep;  // server side endpoint
  147. #else
  148.     unsigned int handle;   // named pipe handle
  149. #endif
  150. #ifdef BRIDGE
  151.      void FAR *    client_ep;  // client side endpoint
  152. #endif
  153.     unsigned int subchannel_handle;    // subchannel local handle
  154.     BYTE FAR *outbuff;      // send: start of send buffer
  155.     BYTE FAR *p_outbuff;    // send: next place in buffer
  156.     int n_outbuff;          // send: room left in send buffer
  157.     BYTE FAR *inbuff;       // recv: start of read buffer
  158.     BYTE FAR *p_inbuff;     // recv: next place in buffer
  159.     int n_inbuff;           // recv: room left in read buffer
  160.     int SQLspanned;         // flag indicating that the SQL command
  161.                             //  has spanned more that 1 network buffer.
  162.     int cbflag;             // flag indicating that a client buffer is
  163.                             //  available.
  164.     DBUSMALLINT channel;    // io packet subchannel
  165.     BYTE packet;            // io packet number
  166.     BYTE window;            // io packet window size
  167. } SRV_IO;
  168.  
  169. //
  170. //  SRV_COLDESC: column description array (used by srv_describe & srv_sendrow)
  171. //
  172. typedef struct srv_coldesc {
  173.     unsigned long otype;    // output data type
  174.     unsigned long olen;     // length
  175.     unsigned long itype;    // input data type
  176.     unsigned long ilen;     // length
  177.     BYTE FAR *data;         // data buffer address
  178.     DBINT user_type;        // user-defined data type
  179.  
  180. } SRV_COLDESC;
  181.  
  182. //
  183. //  SRV_RPCp: RPC parameter information
  184. //
  185. typedef struct srv_rpcp {
  186.     BYTE len;                  // length of RPC parameter name
  187.     BYTE FAR *rpc_name;        // pointer to the RPC parameter name
  188.     BYTE status;               // return status, 1 = passed by reference
  189.     unsigned long user_type;   // User-defined data type
  190.     BYTE type;                 // data type
  191.     unsigned long maxlen;      // maximum possible data length
  192.     unsigned long actual_len;  // actual data length
  193.     void FAR *value;           // the actual data
  194. } SRV_RPCp;
  195.  
  196. //
  197. //  SRV_PROC:   This is the main connection structure
  198. //
  199. typedef struct srv_proc {
  200.     unsigned long start_sem;
  201.     unsigned int tdsversion;   // version of tds detected from client
  202.                                //   0x3400 = 3.4, 0x4000 = 4.0
  203.     unsigned int status;       // status of this SRV_PROC
  204.     SRV_IO srvio;              // I/O structure of srvproc
  205.     SRV_LOGINREC login;        // login record received from the client
  206.     void FAR *langbuff;        // pointer to language buffer
  207.     unsigned int langlen;      // length of language buffer
  208.     unsigned int event;        // event variable
  209.     void FAR *server;          // pointer to associated SRV_SERVER structure
  210. #ifdef _ASYNC_ATTENTIONS
  211.     char FAR *WCthreadstack;    // stack pointer of watch_client thread stack
  212.     unsigned long WCstartedSEM; // watch_client function started semaphore
  213.     unsigned long WCexitedSEM;  // watch_client function exited semaphore
  214.     unsigned long WCwaitSEM;    // watch_client function wait semaphore
  215.     unsigned long WCholdSEM;    // watch_client function hold semaphore
  216. #endif
  217.     char FAR *threadstack;     // stack pointer of event thread stack
  218.     unsigned short threadID;   // thead ID associated with this SRV_PROC
  219.     unsigned long exited;      // semaphore indicating that thread
  220.                                //  associated with this SRV_PROC has exited
  221.     DBINT rowsent;             // # of rows sent to client
  222.     SRV_COLDESC FAR *coldescp; // pointer to column description array
  223.     unsigned int coldescno;    // count of column descriptions
  224.     BYTE FAR *colnamep;        // pointer to column name list
  225.     unsigned int colnamelen;   // length of column name list
  226.     void FAR *userdata;        // pointer to user's private data area
  227.     void FAR *event_data;      // pointer to event data area
  228.  
  229.     BYTE serverlen;            // length of server name
  230.     BYTE FAR *servername;      // name of server
  231.     //
  232.     //  RPC info
  233.     //
  234.     BYTE rpc_active;           // flag indicating active RPC (TRUE=active)
  235.     BYTE rpc_server_len;       // length of RPC server name
  236.     BYTE FAR *rpc_server;      // name of RPC server
  237.     BYTE rpc_database_len;     // length of RPC database name
  238.     BYTE FAR *rpc_database;    // name of RPC database
  239.     BYTE rpc_owner_len;        // length of RPC owner name
  240.     BYTE FAR *rpc_owner;       // name of RPC owner
  241.     BYTE rpc_proc_len;         // length of RPC or stored procecedure name
  242.     BYTE FAR *rpc_proc_name;   // name of RPC or stored procedure
  243.     unsigned int rpc_proc_number;  // number of RPC "procedure_name;number"
  244.     unsigned int rpc_linenumber;   // line number batch error occurred on.
  245.     unsigned short rpc_options;    // recompile option flag (bit 0)
  246.     unsigned short rpc_num_params; // number of RPC parameters
  247.     SRV_RPCp FAR *FAR *rpc_params; // array of pointers to each RPC paramater
  248.     //
  249.     // Return information for non-remote procedure call client command.
  250.     // This information is provided by the function srv_returnval().
  251.     // flag indicating active non-RPC values (TRUE = active)
  252.     BYTE non_rpc_active;
  253.     // number of non-RPC parameters
  254.     //
  255.     unsigned short non_rpc_num_params;
  256.  
  257.     // array of pointers to each non-RPC paramater
  258.     //
  259.     SRV_RPCp FAR *FAR *non_rpc_params;
  260.  
  261.     //
  262.     // temporary work buffer
  263.     //
  264.     char temp_buffer[100];
  265.  
  266.     struct srv_proc FAR *(FAR *subprocs); // array of subchannel SRV_PROC structures
  267.  
  268.      // Data Translation information
  269.      //
  270.      TRANSLATION_INFO translation_info;
  271.  
  272. } SRV_PROC;
  273.  
  274. typedef struct srv_server {
  275. #ifdef NETLIBS
  276.      LGFARPROC SSNetLib[SRV_SERVNETFUNCS]; // Server Side NetLib functions
  277.     unsigned short SSModule; // Server Side DLL
  278.      int ep_size;        
  279.     void FAR * listen_ep;
  280. #endif 
  281. #ifdef BRIDGE
  282.      LGFARPROC CSNetLib[SRV_CLIENTNETFUNCS]; // Client Side NetLib functions
  283.     unsigned short CSModule; // Client Side DLL
  284.     char remote_connect_name[SRV_MAXFILENAME];    
  285. #endif
  286.     unsigned int net_started;   // flag indicating the Gateway being "net started"
  287.     unsigned short net_threadID;   // thead ID of client network event thread
  288.     unsigned int status;           // status of SRV_SERVER process
  289.     unsigned int connects;         // current number of connections
  290.     SRV_PROC FAR *(FAR *srvprocs); // array of SRV_PROC connection structures
  291.     //
  292.     // connection name
  293.     //
  294.     char connect_name[SRV_MAXFILENAME];    
  295.     //
  296.     // temporary work buffer
  297.     //
  298.     char temp_buffer[100];
  299.     //
  300.     // semaphore indicating that there is an open slot available for client
  301.     //   connection.
  302.     //
  303.     unsigned long slot_avail_sem;
  304.     //
  305.     // semaphore indicating that thread has started
  306.     //
  307.     unsigned long start_sem;
  308.     //
  309.     // semaphore indicating that some event has occurred
  310.     //
  311.     unsigned long event_sem;
  312.     //
  313.     // semaphore indicating that log file is being written to
  314.     //
  315.     unsigned long log_sem;
  316.     //
  317.     // server configuration information
  318.     //
  319.     SRV_CONFIG config;
  320.     //
  321.     // define the event handlers
  322.     //
  323.     int (FAR *srv_hndl_attention)(void FAR *);  // ( SRV_PROC   FAR * )
  324.     int (FAR *srv_hndl_connect)(void FAR *);    // ( SRV_PROC   FAR * )
  325.     int (FAR *srv_hndl_disconnect)(void FAR *); // ( SRV_PROC   FAR * )
  326.     int (FAR *srv_hndl_restart)(void FAR *);    // ( SRV_SERVER FAR * )
  327.     int (FAR *srv_hndl_rpc)(void FAR *);        // ( SRV_PROC   FAR * )
  328.     int (FAR *srv_hndl_sleep)(void FAR *);      // ( SRV_SERVER FAR * )
  329.     int (FAR *srv_hndl_language)(void FAR *);   // ( SRV_PROC   FAR * )
  330.     int (FAR *srv_hndl_start)(void FAR *);      // ( SRV_SERVER FAR * )
  331.     int (FAR *srv_hndl_stop)(void FAR *);       // ( SRV_SERVER FAR * )
  332. } SRV_SERVER;
  333.  
  334. #pragma pack( )     // use default packing
  335.