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

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. #ifdef DEBUG
  34. static const char CVS_ID[] = "@(#) $RCSfile: object.c,v $ $Revision: 1.1 $ $Date: 2000/05/15 20:39:56 $ $Name: NSS_3_1_1_RTM $";
  35. #endif /* DEBUG */
  36. #include "ckdbm.h"
  37. static void
  38. nss_dbm_mdObject_Finalize
  39. (
  40.   NSSCKMDObject *mdObject,
  41.   NSSCKFWObject *fwObject,
  42.   NSSCKMDSession *mdSession,
  43.   NSSCKFWSession *fwSession,
  44.   NSSCKMDToken *mdToken,
  45.   NSSCKFWToken *fwToken,
  46.   NSSCKMDInstance *mdInstance,
  47.   NSSCKFWInstance *fwInstance
  48. )
  49. {
  50.   ;
  51. }
  52. static CK_RV
  53. nss_dbm_mdObject_Destroy
  54. (
  55.   NSSCKMDObject *mdObject,
  56.   NSSCKFWObject *fwObject,
  57.   NSSCKMDSession *mdSession,
  58.   NSSCKFWSession *fwSession,
  59.   NSSCKMDToken *mdToken,
  60.   NSSCKFWToken *fwToken,
  61.   NSSCKMDInstance *mdInstance,
  62.   NSSCKFWInstance *fwInstance
  63. )
  64. {
  65.   nss_dbm_object_t *object = (nss_dbm_object_t *)mdObject->etc;
  66.   return nss_dbm_db_delete_object(object->handle);
  67. }
  68. static CK_ULONG
  69. nss_dbm_mdObject_GetAttributeCount
  70. (
  71.   NSSCKMDObject *mdObject,
  72.   NSSCKFWObject *fwObject,
  73.   NSSCKMDSession *mdSession,
  74.   NSSCKFWSession *fwSession,
  75.   NSSCKMDToken *mdToken,
  76.   NSSCKFWToken *fwToken,
  77.   NSSCKMDInstance *mdInstance,
  78.   NSSCKFWInstance *fwInstance,
  79.   CK_RV *pError
  80. )
  81. {
  82.   nss_dbm_object_t *object = (nss_dbm_object_t *)mdObject->etc;
  83.   nss_dbm_session_t *session = (nss_dbm_session_t *)mdSession->etc;
  84.   return nss_dbm_db_get_object_attribute_count(object->handle, pError, 
  85.                                                &session->deviceError);
  86. }
  87. static CK_RV
  88. nss_dbm_mdObject_GetAttributeTypes
  89. (
  90.   NSSCKMDObject *mdObject,
  91.   NSSCKFWObject *fwObject,
  92.   NSSCKMDSession *mdSession,
  93.   NSSCKFWSession *fwSession,
  94.   NSSCKMDToken *mdToken,
  95.   NSSCKFWToken *fwToken,
  96.   NSSCKMDInstance *mdInstance,
  97.   NSSCKFWInstance *fwInstance,
  98.   CK_ATTRIBUTE_TYPE_PTR typeArray,
  99.   CK_ULONG ulCount
  100. )
  101. {
  102.   nss_dbm_object_t *object = (nss_dbm_object_t *)mdObject->etc;
  103.   nss_dbm_session_t *session = (nss_dbm_session_t *)mdSession->etc;
  104.   return nss_dbm_db_get_object_attribute_types(object->handle, typeArray,
  105.                                                ulCount, &session->deviceError);
  106. }
  107. static CK_ULONG
  108. nss_dbm_mdObject_GetAttributeSize
  109. (
  110.   NSSCKMDObject *mdObject,
  111.   NSSCKFWObject *fwObject,
  112.   NSSCKMDSession *mdSession,
  113.   NSSCKFWSession *fwSession,
  114.   NSSCKMDToken *mdToken,
  115.   NSSCKFWToken *fwToken,
  116.   NSSCKMDInstance *mdInstance,
  117.   NSSCKFWInstance *fwInstance,
  118.   CK_ATTRIBUTE_TYPE attribute,
  119.   CK_RV *pError
  120. )
  121. {
  122.   nss_dbm_object_t *object = (nss_dbm_object_t *)mdObject->etc;
  123.   nss_dbm_session_t *session = (nss_dbm_session_t *)mdSession->etc;
  124.   return nss_dbm_db_get_object_attribute_size(object->handle, attribute, pError, 
  125.                                               &session->deviceError);
  126. }
  127. static NSSItem *
  128. nss_dbm_mdObject_GetAttribute
  129. (
  130.   NSSCKMDObject *mdObject,
  131.   NSSCKFWObject *fwObject,
  132.   NSSCKMDSession *mdSession,
  133.   NSSCKFWSession *fwSession,
  134.   NSSCKMDToken *mdToken,
  135.   NSSCKFWToken *fwToken,
  136.   NSSCKMDInstance *mdInstance,
  137.   NSSCKFWInstance *fwInstance,
  138.   CK_ATTRIBUTE_TYPE attribute,
  139.   CK_RV *pError
  140. )
  141. {
  142.   nss_dbm_object_t *object = (nss_dbm_object_t *)mdObject->etc;
  143.   nss_dbm_session_t *session = (nss_dbm_session_t *)mdSession->etc;
  144.   return nss_dbm_db_get_object_attribute(object->handle, object->arena, attribute,
  145.                                          pError, &session->deviceError);
  146. }
  147. static CK_RV
  148. nss_dbm_mdObject_SetAttribute
  149. (
  150.   NSSCKMDObject *mdObject,
  151.   NSSCKFWObject *fwObject,
  152.   NSSCKMDSession *mdSession,
  153.   NSSCKFWSession *fwSession,
  154.   NSSCKMDToken *mdToken,
  155.   NSSCKFWToken *fwToken,
  156.   NSSCKMDInstance *mdInstance,
  157.   NSSCKFWInstance *fwInstance,
  158.   CK_ATTRIBUTE_TYPE attribute,
  159.   NSSItem *value
  160. )
  161. {
  162.   nss_dbm_object_t *object = (nss_dbm_object_t *)mdObject->etc;
  163.   nss_dbm_session_t *session = (nss_dbm_session_t *)mdSession->etc;
  164.   return nss_dbm_db_set_object_attribute(object->handle, attribute, value,
  165.                                          &session->deviceError);
  166. }
  167. NSS_IMPLEMENT NSSCKMDObject *
  168. nss_dbm_mdObject_factory
  169. (
  170.   nss_dbm_object_t *object,
  171.   CK_RV *pError
  172. )
  173. {
  174.   NSSCKMDObject *rv;
  175.   rv = nss_ZNEW(object->arena, NSSCKMDObject);
  176.   if( (NSSCKMDObject *)NULL == rv ) {
  177.     *pError = CKR_HOST_MEMORY;
  178.     return (NSSCKMDObject *)NULL;
  179.   }
  180.   rv->etc = (void *)object;
  181.   rv->Finalize = nss_dbm_mdObject_Finalize;
  182.   rv->Destroy = nss_dbm_mdObject_Destroy;
  183.   /*  IsTokenObject can be deferred */
  184.   rv->GetAttributeCount = nss_dbm_mdObject_GetAttributeCount;
  185.   rv->GetAttributeTypes = nss_dbm_mdObject_GetAttributeTypes;
  186.   rv->GetAttributeSize = nss_dbm_mdObject_GetAttributeSize;
  187.   rv->GetAttribute = nss_dbm_mdObject_GetAttribute;
  188.   rv->SetAttribute = nss_dbm_mdObject_SetAttribute;
  189.   /*  GetObjectSize can be deferred */
  190.   return rv;
  191. }