msgthread.c
上传用户:lyxiangda
上传日期:2007-01-12
资源大小:3042k
文件大小:4k
源码类别:

CA认证

开发平台:

WINDOWS

  1. /*
  2.  * The contents of this file are subject to the Mozilla Public
  3.  * License Version 1.1 (the "License"); you may not use this file
  4.  * except in compliance with the License. You may obtain a copy of
  5.  * the License at http://www.mozilla.org/MPL/
  6.  * 
  7.  * Software distributed under the License is distributed on an "AS
  8.  * IS" basis, WITHOUT WARRANTY OF ANY KIND, either express or
  9.  * implied. See the License for the specific language governing
  10.  * rights and limitations under the License.
  11.  * 
  12.  * The Original Code is the Netscape security libraries.
  13.  * 
  14.  * The Initial Developer of the Original Code is Netscape
  15.  * Communications Corporation.  Portions created by Netscape are 
  16.  * Copyright (C) 1994-2000 Netscape Communications Corporation.  All
  17.  * Rights Reserved.
  18.  * 
  19.  * Contributor(s):
  20.  * 
  21.  * Alternatively, the contents of this file may be used under the
  22.  * terms of the GNU General Public License Version 2 or later (the
  23.  * "GPL"), in which case the provisions of the GPL are applicable 
  24.  * instead of those above.  If you wish to allow use of your 
  25.  * version of this file only under the terms of the GPL and not to
  26.  * allow others to use your version of this file under the MPL,
  27.  * indicate your decision by deleting the provisions above and
  28.  * replace them with the notice and other provisions required by
  29.  * the GPL.  If you do not delete the provisions above, a recipient
  30.  * may use your version of this file under either the MPL or the
  31.  * GPL.
  32.  */
  33. /* Cartman Server specific includes */
  34. #include "serv.h"
  35. #include "ctrlconn.h"
  36. #include "messages.h"
  37. #include "msgthread.h"
  38. struct MsgThreadCtx
  39. {
  40.   SSMStatus (*f)(SSMControlConnection *, SECItem *);
  41.   SSMControlConnection *ctrl;
  42.   SECItem *msg;
  43. };
  44. typedef struct MsgThreadCtx MsgThreadCtx;
  45. static void
  46. freectx(MsgThreadCtx *ctx)
  47. {
  48.   if (!ctx) return;
  49.   SSM_FreeResource(&ctx->ctrl->super.super);
  50.   SECITEM_FreeItem(ctx->msg, PR_TRUE);
  51.   PR_Free(ctx);
  52. }
  53. static void
  54. threadfunc(void *arg)
  55. {
  56.   SSMStatus rv;
  57.   MsgThreadCtx *ctx = (MsgThreadCtx*)arg;
  58.   rv = ctx->f(ctx->ctrl, ctx->msg);
  59.   if (rv != SSM_SUCCESS) {
  60.     ssmcontrolconnection_encode_err_reply(ctx->msg, rv);
  61.   }
  62.   ssmcontrolconnection_send_message_to_client(ctx->ctrl, ctx->msg);
  63.   freectx(ctx);
  64. }
  65. /*
  66.  * This function frees the Control Connection and the Message
  67.  * data before returning.
  68.  */
  69. SSMStatus
  70. SSM_ProcessMsgOnThread(SSMStatus (*f)(SSMControlConnection *, SECItem *),
  71.                        SSMControlConnection *ctrl, SECItem *msg)
  72. {
  73.   SSMStatus rv = PR_SUCCESS;
  74.   MsgThreadCtx *ctx = 0;
  75.   PRThread *thrd;
  76.   ctx = (MsgThreadCtx*)PR_Malloc(sizeof (MsgThreadCtx));
  77.   if (!ctx) { rv = PR_FAILURE; goto loser; }
  78.   ctx->f = f;
  79.   ctx->ctrl = ctrl;
  80.   SSM_GetResourceReference(&ctrl->super.super);
  81.   ctx->msg = SECITEM_DupItem(msg);
  82.   thrd = PR_CreateThread(PR_USER_THREAD, threadfunc, ctx, PR_PRIORITY_NORMAL,
  83.                   PR_LOCAL_THREAD, PR_UNJOINABLE_THREAD, 0);
  84.   if (!thrd) goto loser;
  85.   ctx = 0;  /* Thread now owns the context */
  86. loser:
  87.   if (ctx) freectx(ctx);
  88.   return rv;
  89. }
  90. static void
  91. threadfunc1(void *arg)
  92. {
  93.   SSMStatus rv;
  94.   MsgThreadCtx *ctx = (MsgThreadCtx*)arg;
  95.   rv = ctx->f(ctx->ctrl, ctx->msg);
  96.   /* Can't indicate failure */
  97.   if (rv != SSM_SUCCESS) SSM_DEBUG("Thread processing function failedn");
  98.   freectx(ctx);
  99. }
  100. SSMStatus
  101. SSM_ProcessMsgOnThreadReply(SSMStatus (*f)(SSMControlConnection *, SECItem *),
  102.                             SSMControlConnection *ctrl, SECItem *msg)
  103. {
  104.   SSMStatus rv = PR_SUCCESS;
  105.   MsgThreadCtx *ctx = 0;
  106.   PRThread *thrd;
  107.   SingleNumMessage reply;
  108.   ctx = (MsgThreadCtx*)PR_Malloc(sizeof (MsgThreadCtx));
  109.   if (!ctx) { rv = PR_FAILURE; goto loser; }
  110.   ctx->f = f;
  111.   ctx->ctrl = ctrl;
  112.   SSM_GetResourceReference(&ctrl->super.super);
  113.   ctx->msg = SECITEM_DupItem(msg);
  114.   thrd = PR_CreateThread(PR_USER_THREAD, threadfunc1, ctx, PR_PRIORITY_NORMAL,
  115.                   PR_LOCAL_THREAD, PR_UNJOINABLE_THREAD, 0);
  116.   if (!thrd) goto loser;
  117.   ctx = 0;  /* Thread now owns the context */
  118.   free(msg->data);
  119.   msg->data = 0;
  120.   /* Send response */
  121.   reply.value = 0;
  122.   CMT_EncodeMessage(SingleNumMessageTemplate, (CMTItem*)msg, &reply);
  123. /*  ssmcontrolconnection_send_message_to_client(ctrl, msg); */
  124. loser:
  125.   if (ctx) freectx(ctx);
  126.   return rv;
  127. }