home *** CD-ROM | disk | FTP | other *** search
/ Liren Large Software Subsidy 7 / 07.iso / c / c004 / 1.ddi / CTSTAT.C < prev    next >
Encoding:
C/C++ Source or Header  |  1989-04-18  |  4.5 KB  |  209 lines

  1. /*
  2.  *    c-tree Server Status
  3.  *
  4.  *    This program is the CONFIDENTIAL and PROPRIETARY property 
  5.  *    of FairCom(R) Corporation. Any unauthorized use, reproduction or
  6.  *    transfer of this program is strictly prohibited.
  7.  *
  8.  *      Copyright (c) 1987, 1988, 1989 FairCom Corporation
  9.  *    (Subject to limited distribution and
  10.  *     restricted disclosure only.)
  11.  *    *** ALL RIGHTS RESERVED ***
  12.  *
  13.  *    4006 West Broadway
  14.  *    Columbia, MO 65203
  15.  *
  16.  *
  17.  *    c-tree(R)    Version 4.3
  18.  *            Release C
  19.  *            February 7, 1989 17:30
  20.  *
  21.  */
  22.  
  23. #include "ctstdr.h"
  24. #include "ctoptn.h"
  25. #include "cterrc.h"
  26. #include "ctcomm.h"
  27.  
  28. #define MAXASIZ    512
  29.  
  30. LOCAL MESSAGE    msg;
  31. LOCAL UCOUNT    cts_mxaln;
  32. LOCAL TEXT     *apxmsg,*apxdat;
  33. COUNT        cts_usrid,uerr_cod,cts_apxsiz,*altseq;
  34. TEXT        ct_buf[CTBUFSIZ];
  35. LOCAL SSTATUS    s;
  36. LOCAL LONG    ffrq[MAX_FUNC] = {0};
  37.  
  38. COUNT ctrqst(),ctrspn();
  39.  
  40.  
  41. VOID status()
  42. {
  43.     printf("\n    Server requests: %ld",s.srqsts);
  44.     printf("\n    Users logged in: %ld (counting status report)",s.susers);
  45.     printf("\nActive transactions: %ld",s.strans);
  46.     printf("\n Shut down attempts: %ld (max required = %d)",
  47.         s.shtdwn,CTS_DOWN);
  48.  
  49.     printf("\n\n\tWrite locks: %ld\n\t Read locks: %ld\n\t    Unlocks: %ld",
  50.         s.scts_wl,s.scts_rl,s.scts_ul);
  51.  
  52.     printf("\n\n  Retries w/o block: %ld",s.sredo);
  53.  
  54.     printf(
  55. "\n      Block history:\tseg ops = %ld\n\t\t\tseg clr = %ld\n\t\t\tusr wak = %ld",
  56.         s.ssets,s.swaks,s.suwaks);
  57.     printf("\nRetries after block: %ld",s.sretry);
  58. }
  59.  
  60. VOID freq()
  61. {
  62.     int i;
  63.  
  64.     printf("\n\nServer Function Frequencies:\n");
  65.     for (i = 0; i < MAX_FUNC; i++)
  66.         if (ffrq[i] > 0)
  67.             printf("F%03d %5ld      ",i,ffrq[i]);
  68.     printf("\n");
  69. }
  70.  
  71. VOID filelist()
  72. {
  73.     TEXT fname[MAX_NAME];
  74.     FAST TEXT *tp;
  75.     COUNT       nusers;
  76.  
  77.     tp = apxdat;
  78.     while (msg.mvlen--) {
  79.         strcpy(fname,tp);
  80.         tp += (strlen(tp) + 1);
  81.         cpybuf(&nusers,tp,sizeof(COUNT));
  82.         tp += sizeof(COUNT);
  83.         printf("\n%04d    %s",nusers,fname);
  84.     }
  85. }
  86.  
  87. COUNT ctlogin(papxmsg,cts_apxsiz,pmsg)
  88. TEXT        **papxmsg;
  89. UCOUNT              cts_apxsiz;
  90. MESSAGE                    *pmsg;
  91. {
  92.     TEXT *tpxdat;
  93.     TEXT *getmids();
  94.  
  95.     /*
  96.      * get server message id, create application id, & get space
  97.      * for msg
  98.      */
  99.     pmsg->mfunc   = TST_SPCLOG;
  100.     if ((*papxmsg = getmids(cts_apxsiz,pmsg)) == NULL)
  101.         return(uerr_cod);
  102.     else
  103.         tpxdat = *papxmsg + sizeof(MESSAGE);
  104.  
  105.     /*
  106.      * user id determination (pmsg->musrn set by server to
  107.      * actual value)
  108.      */
  109.     pmsg->musrn = cts_usrid = -1;
  110.  
  111.     /*
  112.      * send a message which: compares application message
  113.      * size with server message size, sends message id
  114.      * (set in getmids and stored in pmsg->mpntr), and
  115.         * compares application MAXLEN with server's
  116.      */
  117.     cts_mxaln   = (pmsg->mvlen = cts_apxsiz) - sizeof(MESSAGE);
  118.     pmsg->mseqn = MAXLEN;
  119.     pmsg->mretc = MAXLEN;
  120.     if (ctrqst(*papxmsg,&msg) || ctrspn(papxmsg,&msg))
  121.         return(uerr_cod);
  122.     return(NO_ERROR);
  123. }
  124.  
  125. COUNT STPUSR()
  126. {
  127.     msg.mfunc = TST_STPUSR;
  128.     msg.mdlen = msg.mretc = 0;
  129.     ctrqst(apxmsg,&msg);
  130.     ctrspn(&apxmsg,&msg);
  131.     ridmids();
  132. }
  133.  
  134. main()
  135. {
  136.     FAST TEXT *tp;
  137.     COUNT       i;
  138.  
  139.     printf("\n\n\t\t\tc-tree(R) Server Status Report\n");
  140.  
  141.     if (ctlogin(&apxmsg,cts_apxsiz = MAXASIZ,&msg))
  142.         goto err_term;
  143.  
  144.     /* output status */
  145.  
  146.     msg.mfunc = FN_STATUS;
  147.     msg.mdlen = msg.mretc = 0;
  148.     msg.mseqn = -1;
  149.     if (ctrqst(apxmsg,&msg) || ctrspn(&apxmsg,&msg))
  150.         goto err_term;
  151.     apxdat = apxmsg + sizeof(MESSAGE);
  152.     cpybuf((TEXT *) &s.srqsts,apxdat,sizeof(SSTATUS));
  153.     status();
  154.  
  155.     /* output function frequency */
  156.  
  157.     tp = apxdat + sizeof(SSTATUS);
  158.     for (;;) {
  159.         while (msg.mvlen--) {
  160.             cpybuf(&i,tp,sizeof(COUNT));
  161.             tp += sizeof(COUNT);
  162.             cpybuf(&ffrq[i],tp,sizeof(LONG));
  163.             tp += sizeof(LONG);
  164.         }
  165.         if (msg.mseqn != 0) {
  166.             msg.mfunc = FN_STATUS;
  167.             msg.mdlen = 0;
  168.             if (ctrqst(apxmsg,&msg) || ctrspn(&apxmsg,&msg))
  169.                 goto err_term;
  170.             tp = apxmsg + sizeof(MESSAGE);
  171.         } else
  172.             break;
  173.     }
  174.     freq();
  175.  
  176.     /* File Listing */
  177.  
  178.     printf("\nPress return to continue with file listing...");
  179.     gets(ct_buf);
  180.     printf("\n\nUsers   File Name");
  181.     msg.mseqn = msg.mretc = 0;
  182.     do {
  183.       msg.mfunc = FN_STFILE;
  184.       msg.mdlen = 0;
  185.       if (ctrqst(apxmsg,&msg) || ctrspn(&apxmsg,&msg))
  186.         goto err_term;
  187.  
  188.       apxdat = apxmsg + sizeof(MESSAGE);
  189.       filelist();
  190.     } while (msg.mseqn != 0);
  191.  
  192.     msg.mfunc = TST_STPUSR;
  193.     msg.mdlen = 0;
  194.     if (ctrqst(apxmsg,&msg) || ctrspn(&apxmsg,&msg))
  195.         goto err_term;
  196.     ridmids();
  197.  
  198.     printf("\nEnd Of Report\n");
  199.     exit(0);
  200.  
  201. err_term:
  202.     printf("\nCould not continue with status report. Error(%d,%d).\n",
  203.         uerr_cod,msg.merrn);
  204.     ridmids();
  205.     exit(2);
  206. }
  207.  
  208. /* end of ctstat.c */
  209.