home *** CD-ROM | disk | FTP | other *** search
- /*
- * System Independent Application Interface
- *
- * This program is the CONFIDENTIAL and PROPRIETARY property
- * of FairCom(R) Corporation. Any unauthorized use, reproduction or
- * transfer of this program is strictly prohibited.
- *
- * Copyright (c) 1987, 1988, 1989 FairCom Corporation
- * (Subject to limited distribution and
- * restricted disclosure only.)
- * *** ALL RIGHTS RESERVED ***
- *
- * 4006 West Broadway
- * Columbia, MO 65203
- *
- *
- * c-tree(R) Version 4.3
- * Release C
- * February 7, 1989 17:30
- *
- */
-
- #include "ctstdr.h"
- #include "ctoptn.h"
- #include "ctstrc.h"
- #include "cterrc.h"
- #include "ctcomm.h"
-
- extern COUNT uerr_cod,cts_usrid,cts_keyops;
- extern UCOUNT cts_mxaln;
- extern KEYOPS *cts_kops;
- extern COUNT *cts_mops;
-
- TEXT *mballc();
-
- COUNT ctlogin(papxmsg, papxdat,filno,cts_apxsiz,tp,pmsg)
- TEXT **papxmsg,**papxdat;
- COUNT filno;
- UCOUNT cts_apxsiz;
- TEXT *tp;
- MESSAGE *pmsg;
- {
- /*
- * if tp == NULL then ctlogin called from INTREE, else ctlogin called
- * just before file creation or file open
- */
-
- TEXT *getmids();
-
- if (tp == NULL) { /* called from INTREE */
- /*
- * get server message id, create application id, & get space
- * for msg
- */
- pmsg->mfunc = TST_MSGSIZ;
- if ((*papxmsg = getmids(cts_apxsiz,pmsg)) == NULL)
- return(uerr_cod);
- else
- *papxdat = *papxmsg + sizeof(MESSAGE);
-
- /*
- * user id determination (pmsg->musrn set by server to
- * actual value)
- */
- pmsg->musrn = cts_usrid = -1;
-
- /*
- * send a message which: compares application message
- * size with server message size, sends message id
- * (set in getmids and stored in pmsg->mpntr), and
- * compares application MAXLEN with server's
- */
- cts_mxaln = (pmsg->mvlen = cts_apxsiz) - sizeof(MESSAGE);
- pmsg->mseqn = MAXLEN;
- pmsg->mretc = sizeof(KEYOPS);
- if (ctapxe(0,TST_MSGSIZ,pmsg->mpntr,NULL)) {
- *papxdat = NULL; /* disable messages */
- return(uerr_cod);
- }
-
- cts_keyops = cts_mxaln / sizeof(KEYOPS);
- if (cts_keyops > pmsg->mseqn)
- cts_keyops = pmsg->mseqn;
- if (cts_keyops > 1 && (cts_kops = (KEYOPS *) mballc(cts_keyops,
- sizeof(KEYOPS))) == NULL)
- return(uerr_cod = SPAC_ERR);
- if (cts_keyops > 1 && (cts_mops = (COUNT *) mballc(cts_keyops,
- sizeof(COUNT))) == NULL) {
- mbfree(cts_kops);
- return(uerr_cod = SPAC_ERR);
- }
-
- cts_usrid = pmsg->musrn;
- }
- return(NO_ERROR);
- }
-
- COUNT ctsrvr(papxmsg, papxdat,pmsg)
- TEXT **papxmsg,**papxdat;
- MESSAGE *pmsg;
- {
- COUNT ctrqst(),ctrspn();
-
- do {
- /* reset error return */
- pmsg->merrn = NO_ERROR;
-
- /* send message: ordinarily an interprocess comm call (e.g., q call) */
- if (ctrqst(*papxmsg,pmsg)) {
- return(pmsg->merrn = uerr_cod);
- }
-
- /* get response: interprocess comm call which leaves answer in apxmsg */
- if (ctrspn(papxmsg,pmsg)) {
- return(pmsg->merrn = uerr_cod);
- } else
- *papxdat = *papxmsg + sizeof(MESSAGE);
-
- /* check for special return codes and cycle or retry as necessary */
- } while (pmsg->merrn == STRY_ERR || pmsg->merrn == ARDO_ERR);
-
- /* return error code */
- return(pmsg->merrn);
- }
-
- /* end of ctapx2.c */
-