home *** CD-ROM | disk | FTP | other *** search
/ Usenet 1994 October / usenetsourcesnewsgroupsinfomagicoctober1994disk2.iso / unix / volume28 / m0 / part02 / o_msgr.c < prev    next >
Encoding:
C/C++ Source or Header  |  1994-06-06  |  3.2 KB  |  159 lines

  1. /*
  2.     o_msgr.c
  3. */
  4. /*  Copyright (c) 1994 Christian F. Tschudin. All rights reserved.
  5.  
  6.     Distributed under the terms of the GNU General Public License
  7.     version 2 of june 1991 as published by the Free Software
  8.     Foundation, Inc.
  9.  
  10.              This file is part of M0.
  11.  
  12. M0 is distributed in the hope that it will be useful, but WITHOUT ANY
  13. WARRANTY.  No author or distributor accepts responsibility to anyone for
  14. the consequences of using it or for whether it serves any particular
  15. purpose or works at all, unless he says so in writing.  Refer to the GNU
  16. General Public License for full details. 
  17.  
  18. Everyone is granted permission to copy, modify and redistribute M0, but
  19. only under the conditions described in the GNU General Public License. 
  20. A copy of this license is supposed to have been given to you along with
  21. M0 so you can know your rights and responsibilities.  It should be in a
  22. file named LICENSE.  Among other things, the copyright notice and this
  23. notice must be preserved on all copies.  */
  24.  
  25. #include "l_proto.h"
  26. #include "o_proto.h"
  27.  
  28.  
  29. retcode
  30. o_currentqueue()
  31. {
  32.     eindex ei;
  33.  
  34.     if (current->osp >= MAXOSTACK)
  35.         return ERR_OSTACK_OVERFLOW;
  36.     ei = current->qkey ? current->qkey : null_val;
  37.     incref(current, ei);
  38.     current->os[current->osp++] = ei;
  39.  
  40.     return OK;
  41. }
  42.  
  43.  
  44. retcode
  45. o_enter()
  46. {
  47. /*    possible usages:
  48.          q-key  E  -
  49.      q-key int  E  int    (no timeout=0, timeout=1)
  50.     q-key time  E  int
  51. */
  52.     eindex qk, t=0;
  53.     eptr qp, tp;
  54.     retcode rc;
  55.  
  56.     if (current->osp < 1)
  57.         return ERR_STACK_UNDERFLOW;
  58.     qk = current->os[current->osp-1];
  59.     qp = eaddr(current, qk);
  60.     if (eptype(qp) != T_KEY) {
  61.         if (eptype(qp)!= T_INT && eptype(qp)!=T_TIME)
  62.             return ERR_TYPE_CHECK;
  63.         t = qk;
  64.         tp = qp;
  65.         if (current->osp < 2)
  66.             return ERR_STACK_UNDERFLOW;
  67.         qk = current->os[current->osp-2];
  68.         qp = eaddr(current,qk);
  69.         if (eptype(qp) != T_KEY)
  70.             return ERR_TYPE_CHECK;
  71.         current->osp -= 2;
  72.     } else
  73.         current->osp -= 1;
  74.  
  75.     if (t && eptype(tp) == T_INT) {
  76.         eindex now = time_now(current), then;
  77.         then = time_addint(current, now, tp->V.i);
  78.         decrefp(current, t, tp);
  79.         decref(current, now);
  80.         t = then;
  81.     }
  82.  
  83.     rc = enqueue(current, qk, t);
  84.     if (t)
  85.         decref(current, t);
  86.     decrefp(current, qk, qp);
  87.  
  88.     if (t && rc == OK)
  89.         current->os[current->osp++] = new_element(current, T_INT);
  90.  
  91.     return rc;
  92. }
  93.  
  94.  
  95. retcode
  96. o_leave()
  97. {
  98.     if (current->qkey)
  99.         dequeue(current);
  100.  
  101.     return OK;
  102. }
  103.  
  104.  
  105. retcode
  106. o_qstate()
  107. {
  108.     load_2_args(qk, i, qkp, ip);
  109.  
  110.     if (eptype(qkp)!= T_KEY || eptype(ip)!=T_INT)
  111.         return ERR_TYPE_CHECK;
  112.  
  113.     queue_state(qk, ip->V.i);
  114.  
  115.     decrefp(current, qk, qkp);
  116.     decrefp(current, i, ip);
  117.     current->osp -= 2;
  118.  
  119.     return OK;
  120. }
  121.  
  122.  
  123. retcode
  124. o_submit()
  125. {
  126.     eindex c;
  127.  
  128.     load_2_args(k, m, kp, mp);
  129.  
  130.     if (eptype(mp) != T_STRING)
  131.         return ERR_TYPE_CHECK;
  132.     if (!(epattr(mp) & A_READ))
  133.         return ERR_ACCESS_CHECK;
  134.  
  135.     if (eptype(kp) == T_KEY) {
  136.         c = dict_get(current, channeldict, k);
  137.         if (c) {
  138.             eindex m2 = make_global(current, m);
  139.             eptr cp = eaddr(current, c);
  140.             (cp->V.cha.submit)(current, cp->V.cha.data, m2);
  141.             decref(0, m2);
  142.         }
  143.     } else {
  144.         eindex m2 = make_global(current, m);
  145.         eindex k2 = make_global(current, k);
  146.         c = dict_get(current, channeldict, null_key);
  147.         (eaddr(current, c)->V.cha.submit)(current, &k2, m2);
  148.         decref(0, m2);
  149.         decref(0, k2);
  150.     }
  151.  
  152.  
  153.     decrefp(current, k, kp);
  154.     decrefp(current, m, mp);
  155.     current->osp -= 2;
  156.  
  157.     return OK;
  158. }
  159.