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

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. #include "resource.h"
  34. #include "minihttp.h"
  35. #include "advisor.h"
  36. #include "sdrres.h"
  37. #define SSMRESOURCE(object) (&(object)->super)
  38. /*
  39.  * SDRContext_Create
  40.  *    Create and initialize an SDR context resource object
  41.  */
  42. SSMStatus
  43. SSMSDRContext_Create(void *arg, SSMControlConnection *ctrl, SSMResource **res)
  44. {
  45.   SSMStatus rv = SSM_SUCCESS;
  46.   SSMSDRContext *sdr = 0;
  47.   *res = NULL;
  48.   sdr = SSM_ZNEW(SSMSDRContext);
  49.   if (sdr == NULL) { rv = SSM_FAILURE; goto done; }
  50.   rv = SSMResource_Init(ctrl, SSMRESOURCE(sdr), SSM_RESTYPE_SDR_CONTEXT);
  51.   if (rv != SSM_SUCCESS) goto done;
  52.   /* Init SDR fields here */
  53.   /* Return the new value */
  54.   *res = SSMRESOURCE(sdr);
  55.   sdr = NULL;
  56. done:
  57.   if (sdr) SSM_FreeResource(SSMRESOURCE(sdr));
  58.   SSM_DEBUG("SDRContext_Create (%d) %lxn", rv, *res);
  59.   return rv;
  60. }
  61. /*
  62.  * SDRContext_Destroy
  63.  *     Destroy contents of resource and optionally free the memory.
  64.  *     NOTE: doFree should always be PR_TRUE, since this type is not
  65.  *        subclassed.
  66.  */
  67. SSMStatus
  68. SSMSDRContext_Destroy(SSMResource *res, PRBool doFree)
  69. {
  70.   SSMStatus rv;
  71.   SSMSDRContext *sdr = (SSMSDRContext *)res;
  72.   rv = SSMResource_Destroy(res, PR_FALSE);
  73.   if (rv != SSM_SUCCESS) goto done;
  74.   if (doFree) PR_Free(sdr);
  75. done:
  76.   SSM_DEBUG("SDRContext_Destroy (%d)n", rv);
  77.   return rv;
  78. }
  79. /*
  80.  * SSMSDRContext_FormSubmitHandler
  81.  */
  82. SSMSDRContext_FormSubmitHandler(SSMResource * res, HTTPRequest * req)
  83. {
  84.     SSMStatus rv;
  85.     SSM_DEBUG("SSMSDRContext_FormSubmitn");
  86.  
  87.     if (!res->m_formName)
  88.         goto loser;
  89.     if (PL_strcmp(res->m_formName, "set_db_password") == 0)
  90.         rv = SSM_SetDBPasswordHandler(req);
  91.     else /* other cases where this could be used will go here */
  92.         goto loser;
  93.     SSM_DEBUG("SSMSDRContext_FormSubmit (%d)n", rv);
  94.     return rv;
  95.  loser:
  96.     SSM_DEBUG("FormSubmit handler is called with no valid formNamen");
  97.     SSM_NotifyUIEvent(res);
  98.     return SSM_FAILURE;
  99. }