home *** CD-ROM | disk | FTP | other *** search
/ The World of Computer Software / World_Of_Computer_Software-02-385-Vol-1of3.iso / x / xtrapv33.zip / extensions / lib / xtrap / XERqsts.c < prev    next >
C/C++ Source or Header  |  1992-09-14  |  15KB  |  468 lines

  1. /*****************************************************************************
  2. Copyright 1987, 1988, 1989, 1990, 1991 by Digital Equipment Corp., Maynard, MA
  3.  
  4. Permission to use, copy, modify, and distribute this software and its 
  5. documentation for any purpose and without fee is hereby granted, 
  6. provided that the above copyright notice appear in all copies and that
  7. both that copyright notice and this permission notice appear in 
  8. supporting documentation, and that the name of Digital not be
  9. used in advertising or publicity pertaining to distribution of the
  10. software without specific, written prior permission.  
  11.  
  12. DIGITAL DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE, INCLUDING
  13. ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO EVENT SHALL
  14. DIGITAL BE LIABLE FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR
  15. ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS,
  16. WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION,
  17. ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS
  18. SOFTWARE.
  19.  
  20. *****************************************************************************/
  21. #include "Xlib.h"
  22. #define NEED_REPLIES
  23. #define NEED_EVENTS
  24. #include "Xproto.h"
  25.  
  26. /* the following's a hack to support V3.1 protocol */
  27. #if defined(__STDC__) && !defined(UNIXCPP)
  28. #define GetOldReq(name, req, old_length) \
  29.         WORD64ALIGN\
  30.         if ((dpy->bufptr + SIZEOF(x##name##Req)) > dpy->bufmax)\
  31.                 _XFlush(dpy);\
  32.         req = (x##name##Req *)(dpy->last_req = dpy->bufptr);\
  33.         req->reqType = X_##name;\
  34.         req->length = old_length>>2;\
  35.         dpy->bufptr += old_length;\
  36.         dpy->request++
  37.  
  38. #else  /* non-ANSI C uses empty comment instead of "##" for token concat */
  39. #define GetOldReq(name, req, old_length) \
  40.         WORD64ALIGN\
  41.         if ((dpy->bufptr + SIZEOF(x/**/name/**/Req)) > dpy->bufmax)\
  42.                 _XFlush(dpy);\
  43.         req = (x/**/name/**/Req *)(dpy->last_req = dpy->bufptr);\
  44.         req->reqType = X_/**/name;\
  45.         req->length = old_length>>2;\
  46.         dpy->bufptr += old_length;\
  47.         dpy->request++
  48. #endif
  49.  
  50. #ifndef vms
  51. #include "Xlibint.h"
  52. #else   /* vms */
  53. #define SyncHandle() \
  54.     if (dpy->synchandler) (*dpy->synchandler)(dpy)
  55. /*
  56.  * LockDisplay uses an undocumented feature in V5 of VMS that allows
  57.  * disabling ASTs without calling $SETAST.  A bit is set in P1 space
  58.  * that disables a user mode AST from being delivered to this process.
  59.  * 
  60.  */
  61. #define LockDisplay(dis)             \
  62. {   globalref char ctl$gb_soft_ast_disable;    \
  63.     globalref char ctl$gb_lib_lock;        \
  64.     globalref short ctl$gw_soft_ast_lock_depth;    \
  65.     if ( ctl$gb_soft_ast_disable == 0 ) {    \
  66.     ctl$gb_soft_ast_disable = 1;        \
  67.     ctl$gb_lib_lock = 1;            \
  68.     ctl$gw_soft_ast_lock_depth = 1;        \
  69.     }                        \
  70.     else ctl$gw_soft_ast_lock_depth++;        \
  71. }
  72.  
  73. /*
  74.  * UnlockDisplay clears the AST disable bit, then checks to see if an
  75.  * AST delivery attempt was made during the critical section.  If so,
  76.  * reenable_ASTs is set, and $SETAST must be called to turn AST delivery
  77.  * back on.
  78.  * 
  79.  * Note that it assumed that LockDisplay and UnlockDisplay appear in
  80.  * matched sets within a single routine.
  81.  */
  82. #define UnlockDisplay(dis)             \
  83. {   globalref char ctl$gb_reenable_asts;    \
  84.     globalref char ctl$gb_soft_ast_disable;    \
  85.     globalref char ctl$gb_lib_lock;        \
  86.     globalref short ctl$gw_soft_ast_lock_depth;    \
  87.     if (!--ctl$gw_soft_ast_lock_depth)         \
  88.     if ( ctl$gb_lib_lock ) {        \
  89.         ctl$gb_lib_lock = 0;        \
  90.             ctl$gb_soft_ast_disable = 0;    \
  91.         if (ctl$gb_reenable_asts != 0)    \
  92.         sys$setast(1);            \
  93.         }                    \
  94. }
  95.  
  96. #define WORD64ALIGN
  97. #if defined(__STDC__) && !defined(UNIXCPP)
  98. #define GetReq(name, req) \
  99.         WORD64ALIGN\
  100.         if ((dpy->bufptr + SIZEOF(x##name##Req)) > dpy->bufmax)\
  101.                 _XFlush(dpy);\
  102.         req = (x##name##Req *)(dpy->last_req = dpy->bufptr);\
  103.         req->reqType = X_##name;\
  104.         req->length = (SIZEOF(x##name##Req))>>2;\
  105.         dpy->bufptr += SIZEOF(x##name##Req);\
  106.         dpy->request++
  107.  
  108. #else  /* non-ANSI C uses empty comment instead of "##" for token concat */
  109. #define GetReq(name, req) \
  110.         WORD64ALIGN\
  111.         if ((dpy->bufptr + SIZEOF(x/**/name/**/Req)) > dpy->bufmax)\
  112.                 _XFlush(dpy);\
  113.         req = (x/**/name/**/Req *)(dpy->last_req = dpy->bufptr);\
  114.         req->reqType = X_/**/name;\
  115.         req->length = (SIZEOF(x/**/name/**/Req))>>2;\
  116.         dpy->bufptr += SIZEOF(x/**/name/**/Req);\
  117.         dpy->request++
  118. #endif
  119. /* The following is from Xlibint.h from the SHRLIB component on DECWIN */
  120. #define _XRead32(dpy, data, len) _XRead((dpy), (char *)(data), (len))
  121. #endif /* vms */
  122.  
  123. #include "xtraplib.h"
  124. #include "xtraplibp.h"
  125.  
  126. /* Returns the all important protocol number to be used.
  127.  * The only request guaranteed to be of the same request/reply
  128.  * size is XEGetVersionRequest.  All others need the protocol
  129.  * number to determine how to communicate.
  130.  * Unfortunately, this was broken for V3.1 so GetAvailable will
  131.  * have to be used to determine the protocol version.
  132.  */
  133. #ifdef FUNCTION_PROTOS
  134. int XEGetVersionRequest(XETC *tc, XETrapGetVersRep *ret) 
  135. #else
  136. int XEGetVersionRequest(tc,ret) 
  137.     XETC *tc;
  138.     XETrapGetVersRep *ret;
  139. #endif
  140.     int status = True;
  141.     Display *dpy = tc->dpy;
  142.     CARD32 X_XTrapGet = tc->extOpcode;
  143.     xXTrapGetReq *reqptr;
  144.     xXTrapGetVersReply rep; 
  145.     int numlongs = (SIZEOF(xXTrapGetVersReply) -
  146.         SIZEOF(xReply) + SIZEOF(CARD32) -1 ) / SIZEOF(CARD32);
  147.     LockDisplay(dpy); 
  148.     GetReq(XTrapGet,reqptr);
  149.     reqptr->minor_opcode = XETrap_GetVersion;
  150.     reqptr->protocol = XETrapProtocol;
  151.     status = _XReply(dpy,(xReply *)&rep,numlongs,xTrue); 
  152.     SyncHandle(); 
  153.     UnlockDisplay(dpy); 
  154.     memcpy((char *)ret,&(rep.data),sizeof(XETrapGetVersRep)); 
  155.     return(status);
  156. }
  157.  
  158. #ifdef FUNCTION_PROTOS
  159. int XEGetAvailableRequest(XETC *tc, XETrapGetAvailRep *ret) 
  160. #else
  161. int XEGetAvailableRequest(tc,ret) 
  162.     XETC *tc;
  163.     XETrapGetAvailRep *ret;
  164. #endif
  165.     int status = True;
  166.     Display *dpy = tc->dpy;
  167.     CARD32 X_XTrapGet = tc->extOpcode;
  168.     xXTrapGetReq *reqptr;
  169.     xXTrapGetAvailReply rep; 
  170.     int numlongs = (SIZEOF(xXTrapGetAvailReply) -
  171.         SIZEOF(xReply) + SIZEOF(CARD32) -1 ) / SIZEOF(CARD32);
  172.     LockDisplay(dpy); 
  173.     GetReq(XTrapGet,reqptr);
  174.     reqptr->minor_opcode = XETrap_GetAvailable;
  175.     reqptr->protocol = XETrapProtocol;
  176.     status = _XReply(dpy,(xReply *)&rep,numlongs,xTrue); 
  177.     SyncHandle(); 
  178.     UnlockDisplay(dpy); 
  179.     memcpy((char *)ret,&(rep.data),sizeof(XETrapGetAvailRep)); 
  180.     return(status);
  181. }
  182.  
  183. /* should not be called directly by clients */
  184. #ifdef FUNCTION_PROTOS
  185. static int XEConfigRequest(XETC *tc)
  186. #else
  187. static int XEConfigRequest(tc)
  188.     XETC *tc;
  189. #endif
  190. {   /* protocol changed between V3.1 and V3.2! */
  191.     int status = True;
  192.     Display *dpy = tc->dpy;
  193.     CARD32 X_XTrapConfig = tc->extOpcode;
  194.     xXTrapConfigReq *reqptr;
  195.     if (tc->protocol == 31)
  196.     {   /* hack to allocate the old request length */
  197.         GetOldReq(XTrapConfig,reqptr,276);
  198.     }
  199.     else
  200.     {
  201.         GetReq(XTrapConfig,reqptr);
  202.     }
  203.     reqptr->minor_opcode = XETrap_Config;
  204.  
  205.     memcpy((char *)reqptr->config_flags_valid,
  206.         (char *)tc->values.v.flags.valid,4);
  207.     memcpy((char *)reqptr->config_flags_data,
  208.         (char *)tc->values.v.flags.data,4);
  209.     memcpy((char *)reqptr->config_flags_req,
  210.         (char *)tc->values.v.flags.req,XETrapMaxRequest);
  211.     memcpy((char *)reqptr->config_flags_event,
  212.         (char *)tc->values.v.flags.event,XETrapMaxEvent);
  213.     reqptr->config_max_pkt_size=tc->values.v.max_pkt_size;
  214.     reqptr->config_cmd_key=tc->values.v.cmd_key;
  215.  
  216.     XFlush(dpy);
  217.     SyncHandle();
  218.     tc->dirty = 0L; /* Configuration is no longer dirty */
  219.     return(status);
  220. }
  221.  
  222. /* Flush out any pending configuration */
  223. #ifdef FUNCTION_PROTOS
  224. int XEFlushConfig(XETC *tc)
  225. #else
  226. int XEFlushConfig(tc)
  227.     XETC *tc;
  228. #endif
  229. {
  230.     return((tc->dirty) ? XEConfigRequest(tc) : True);
  231. }
  232. #ifdef FUNCTION_PROTOS
  233. int XEResetRequest(XETC *tc)
  234. #else
  235. int XEResetRequest(tc)
  236.     XETC *tc;
  237. #endif
  238. {
  239.     int status = True;
  240.     Display *dpy = tc->dpy;
  241.     CARD32 X_XTrap = tc->extOpcode;
  242.     xXTrapReq *reqptr;
  243.     status = XEFlushConfig(tc); /* Flushout any pending configuration first */
  244.     if (status == True)
  245.     {
  246.         GetReq(XTrap,reqptr);
  247.         reqptr->minor_opcode = XETrap_Reset;
  248.         XFlush(dpy);
  249.         SyncHandle();
  250.     }
  251.     return(status);
  252. }
  253.  
  254.  
  255. #ifdef FUNCTION_PROTOS
  256. int XEGetLastInpTimeRequest(XETC *tc, XETrapGetLastInpTimeRep *ret) 
  257. #else
  258. int XEGetLastInpTimeRequest(tc,ret) 
  259.     XETC *tc;
  260.     XETrapGetLastInpTimeRep *ret;
  261. #endif
  262. {   /* this was broken in V3.1! */
  263.     int status = True;
  264.     Display *dpy = tc->dpy;
  265.     CARD32 X_XTrap = tc->extOpcode;
  266.     xXTrapReq *reqptr;
  267.     xXTrapGetLITimReply rep; 
  268.     int numlongs = (SIZEOF(xXTrapGetLITimReply) -
  269.         SIZEOF(xReply) + SIZEOF(CARD32) - 1) / SIZEOF(CARD32);
  270.     LockDisplay(dpy); 
  271.     GetReq(XTrap,reqptr);
  272.     reqptr->minor_opcode = XETrap_GetLastInpTime;
  273.     status = _XReply(dpy,(xReply *)&rep,numlongs,xTrue); 
  274.     SyncHandle(); 
  275.     UnlockDisplay(dpy); 
  276.  
  277.     ret->last_time=rep.data_last_time;
  278.  
  279.     return(status);
  280. }
  281.  
  282. #ifdef FUNCTION_PROTOS
  283. int XEStartTrapRequest(XETC *tc)
  284. #else
  285. int XEStartTrapRequest(tc)
  286.     XETC *tc;
  287. #endif
  288.     int status = True;
  289.     Display *dpy = tc->dpy;
  290.     CARD32 X_XTrap = tc->extOpcode;
  291.     xXTrapReq *reqptr;
  292.     status = XEFlushConfig(tc); /* Flushout any pending configuration first */
  293.     if (status == True)
  294.     {
  295.         /* Add our event handler for the XLib transport */
  296.         status = XETrapSetEventHandler(tc, XETrapData, XETrapDispatchXLib);
  297.         GetReq(XTrap,reqptr);
  298.         reqptr->minor_opcode = XETrap_StartTrap;
  299.         XFlush(dpy);
  300.         SyncHandle(); 
  301.         BitTrue(tc->values.tc_flags, XETCTrapActive);
  302.     }
  303.     return(status);
  304. }
  305. #ifdef FUNCTION_PROTOS
  306. int XEStopTrapRequest(XETC *tc) 
  307. #else
  308. int XEStopTrapRequest(tc) 
  309.     XETC *tc;
  310. #endif
  311.     int status = True;
  312.     Display *dpy = tc->dpy;
  313.     CARD32 X_XTrap = tc->extOpcode;
  314.     xXTrapReq *reqptr;
  315.     status = XEFlushConfig(tc); /* Flushout any pending configuration first */
  316.     if (status == True)
  317.     {
  318.         GetReq(XTrap,reqptr);
  319.         reqptr->minor_opcode = XETrap_StopTrap;
  320.         XFlush(dpy);
  321.         SyncHandle(); 
  322.         BitFalse(tc->values.tc_flags, XETCTrapActive);
  323.         /* Remove our event handler for the XLib transport */
  324.         status = XETrapSetEventHandler(tc, XETrapData, NULL);
  325.     }
  326.  
  327.     return(status);
  328. }
  329.  
  330. #ifndef _XINPUT
  331. #ifdef FUNCTION_PROTOS
  332. int XESimulateXEventRequest(XETC *tc, CARD8 type, CARD8 detail,
  333.     CARD16 x, CARD16 y, CARD8 screen) 
  334. #else
  335. int XESimulateXEventRequest(tc,type,detail,x,y,screen) 
  336.     XETC  *tc;
  337.     CARD8 type;
  338.     CARD8 detail;
  339.     CARD16 x,y;
  340.     CARD8 screen;
  341. #endif
  342. {
  343.     int status = True;
  344.     Display *dpy = tc->dpy;
  345.     CARD32 X_XTrapInput = tc->extOpcode;
  346.     xXTrapInputReq *reqptr;
  347.     status = XEFlushConfig(tc); /* Flushout any pending configuration first */
  348.     if (status == True)
  349.     {   /* write out the input event */
  350.         GetReq(XTrapInput,reqptr);
  351.         reqptr->minor_opcode = XETrap_SimulateXEvent;
  352.         reqptr->input.type   = type;
  353.         reqptr->input.detail = detail;
  354.         reqptr->input.x      = x;
  355.         reqptr->input.y      = y;
  356.         reqptr->input.screen = screen;
  357.         XFlush(dpy);
  358.     }
  359.     return(status);
  360. }
  361. #endif
  362. #ifdef FUNCTION_PROTOS
  363. int XEGetCurrentRequest(XETC *tc, XETrapGetCurRep *ret) 
  364. #else
  365. int XEGetCurrentRequest(tc, ret) 
  366.     XETC *tc;
  367.     XETrapGetCurRep *ret;
  368. #endif
  369.     int status = True;
  370.     Display *dpy = tc->dpy;
  371.     CARD32 X_XTrap = tc->extOpcode;
  372.     xXTrapReq *reqptr;
  373.     xXTrapGetCurReply rep; 
  374.     int numlongs = (SIZEOF(xXTrapGetCurReply) - 
  375.         SIZEOF(xReply) + SIZEOF(CARD32) -1 ) / SIZEOF(CARD32);
  376.     status = XEFlushConfig(tc); /* Flushout any pending configuration first */
  377.     if (status == True)
  378.     {
  379.         LockDisplay(dpy); 
  380.         GetReq(XTrap,reqptr);
  381.         reqptr->minor_opcode = XETrap_GetCurrent;
  382.         /* to support comm. w/ V3.1 extensions */
  383.         if (tc->protocol == 31)
  384.         {
  385.             char tmp[284];  /* need space for the big *old* reply */
  386.             numlongs = (284-sizeof(xReply)+sizeof(long)-1)/sizeof(long);
  387.             status = _XReply(dpy,(xReply *)tmp,numlongs,xTrue);
  388.             memcpy(&rep,tmp,sizeof(rep));   /* move just what's needed */
  389.         }
  390.         else
  391.         {
  392.             status = _XReply(dpy,(xReply *)&rep,numlongs,xTrue); 
  393.         }
  394.         SyncHandle();
  395.         UnlockDisplay(dpy); 
  396.  
  397.     memcpy((char *)ret->state_flags,rep.data_state_flags,2);
  398.     memcpy((char *)ret->config.flags.valid,rep.data_config_flags_valid,4);
  399.     memcpy((char *)ret->config.flags.data,rep.data_config_flags_data,4);
  400.     memcpy((char *)ret->config.flags.req,rep.data_config_flags_req,
  401.         XETrapMaxRequest);
  402.     memcpy((char *)ret->config.flags.event,rep.data_config_flags_event,
  403.         XETrapMaxEvent);
  404.     ret->config.max_pkt_size=rep.data_config_max_pkt_size;
  405.     ret->config.cmd_key=rep.data_config_cmd_key;
  406.  
  407.     }
  408.     return(status);
  409. }
  410.  
  411. #ifdef FUNCTION_PROTOS
  412. int XEGetStatisticsRequest(XETC *tc, XETrapGetStatsRep *ret) 
  413. #else
  414. int XEGetStatisticsRequest(tc,ret) 
  415.     XETC *tc;
  416.     XETrapGetStatsRep *ret;
  417. #endif
  418.     int status = True;
  419.     Display *dpy = tc->dpy;
  420.     CARD32 X_XTrap = tc->extOpcode;
  421.     xXTrapReq *reqptr;
  422.     xXTrapGetStatsReply rep; 
  423.     status = XEFlushConfig(tc); /* Flushout any pending configuration first */
  424.     if (status == True)
  425.     {
  426.         LockDisplay(dpy); 
  427.         GetReq(XTrap,reqptr);
  428.         reqptr->minor_opcode = XETrap_GetStatistics;
  429.         /* to support comm. w/ V3.1 extensions */
  430. #ifndef CRAY
  431.         if (tc->protocol == 31)
  432.         {   /* this is the way we used to do it which breaks Cray's */
  433. #ifndef VECTORED_EVENTS
  434.             int numlongs = (1060-sizeof(xReply)+sizeof(long)-1)/sizeof(long);
  435. #else
  436.             int numlongs = (1544-sizeof(xReply)+sizeof(long)-1)/sizeof(long);
  437. #endif
  438.             status = _XReply(dpy,(xReply *)&rep,numlongs,xTrue); 
  439.             if (status == True)
  440.             {   /* need to shift it back into the data struct */
  441.                 xXTrapGetStatsReply tmp; 
  442.                 tmp = rep; 
  443.                 memcpy(&(rep.data),&(tmp.pad0), sizeof(rep.data));
  444.             }
  445.         }
  446.         else
  447. #endif /* CRAY */
  448.         {   /* this is the way we do it for V3.2 */
  449.             int numbytes = SIZEOF(xXTrapGetStatsReply) - SIZEOF(xReply);
  450.             status = _XReply(dpy, (xReply *)&rep, 0, xFalse); 
  451.             if (status == True)
  452.             {
  453.                 status = _XRead32(dpy, (long *)&rep.data, numbytes);
  454.             }
  455.         }
  456.         SyncHandle(); 
  457.         UnlockDisplay(dpy); 
  458.         memcpy(ret,&(rep.data),sizeof(XETrapGetStatsRep)); 
  459.     }
  460.     return(status);
  461. }
  462.