usmDHUserKeyTable_data_access.c
上传用户:wxp200602
上传日期:2007-10-30
资源大小:4028k
文件大小:10k
源码类别:

SNMP编程

开发平台:

Unix_Linux

  1. /*
  2.  * Note: this file originally auto-generated by mib2c using
  3.  *       version : 1.12 $ of : mfd-data-access.m2c,v $ 
  4.  *
  5.  * $Id: usmDHUserKeyTable_data_access.c,v 1.6.2.3 2005/01/31 06:06:08 rstory Exp $
  6.  */
  7. /*
  8.  * standard Net-SNMP includes 
  9.  */
  10. #include <net-snmp/net-snmp-config.h>
  11. #include <net-snmp/net-snmp-includes.h>
  12. #include <net-snmp/agent/net-snmp-agent-includes.h>
  13. /*
  14.  * include our parent header 
  15.  */
  16. #include "usmDHUserKeyTable.h"
  17. #include "usmDHUserKeyTable_data_access.h"
  18. /** @defgroup data_access data_access: Routines to access data
  19.  *
  20.  * These routines are used to locate the data used to satisfy
  21.  * requests.
  22.  * 
  23.  * @{
  24.  */
  25. /**********************************************************************
  26.  **********************************************************************
  27.  ***
  28.  *** Table usmDHUserKeyTable
  29.  ***
  30.  **********************************************************************
  31.  **********************************************************************/
  32. /*
  33.  * usmDHUserKeyTable is subid 2 of usmDHPublicObjects.
  34.  * Its status is Current.
  35.  * OID: .1.3.6.1.3.101.1.1.2, length: 9
  36.  */
  37. /**
  38.  * initialization for usmDHUserKeyTable data access
  39.  *
  40.  * This function is called during startup to allow you to
  41.  * allocate any resources you need for the data table.
  42.  *
  43.  * @param usmDHUserKeyTable_reg
  44.  *        Pointer to usmDHUserKeyTable_registration
  45.  *
  46.  * @retval MFD_SUCCESS : success.
  47.  * @retval MFD_ERROR   : unrecoverable error.
  48.  */
  49. int
  50. usmDHUserKeyTable_init_data(usmDHUserKeyTable_registration_ptr
  51.                             usmDHUserKeyTable_reg)
  52. {
  53.     DEBUGMSGTL(("verbose:usmDHUserKeyTable:usmDHUserKeyTable_init_data",
  54.                 "calledn"));
  55.     /*
  56.      * TODO:303:o: Initialize usmDHUserKeyTable data.
  57.      */
  58.     return MFD_SUCCESS;
  59. }                               /* usmDHUserKeyTable_init_data */
  60. /**
  61.  * container-cached overview
  62.  *
  63.  */
  64. /***********************************************************************
  65.  *
  66.  * cache
  67.  *
  68.  ***********************************************************************/
  69. /**
  70.  * container initialization
  71.  *
  72.  * @param container_ptr_ptr A pointer to a container pointer. If you
  73.  *        create a custom container, use this parameter to return it
  74.  *        to the MFD helper. If set to NULL, the MFD helper will
  75.  *        allocate a container for you.
  76.  * @param  cache A pointer to a cache structure. You can set the timeout
  77.  *         and other cache flags using this pointer.
  78.  *
  79.  *  This function is called at startup to allow you to customize certain
  80.  *  aspects of the access method. For the most part, it is for advanced
  81.  *  users. The default code should suffice for most cases. If no custom
  82.  *  container is allocated, the MFD code will create one for your.
  83.  *
  84.  *  This is also the place to set up cache behavior. The default, to
  85.  *  simply set the cache timeout, will work well with the default
  86.  *  container. If you are using a custom container, you may want to
  87.  *  look at the cache helper documentation to see if there are any
  88.  *  flags you want to set.
  89.  *
  90.  * @remark
  91.  *  This would also be a good place to do any initialization needed
  92.  *  for you data source. For example, opening a connection to another
  93.  *  process that will supply the data, opening a database, etc.
  94.  */
  95. void
  96. usmDHUserKeyTable_container_init(netsnmp_container ** container_ptr_ptr,
  97.                                  netsnmp_cache * cache)
  98. {
  99.     DEBUGMSGTL(("verbose:usmDHUserKeyTable:usmDHUserKeyTable_container_init", "calledn"));
  100.     if ((NULL == cache) || (NULL == container_ptr_ptr)) {
  101.         snmp_log(LOG_ERR,
  102.                  "bad params to usmDHUserKeyTable_container_initn");
  103.         return;
  104.     }
  105.     /*
  106.      * For advanced users, you can use a custom container. If you
  107.      * do not create one, one will be created for you.
  108.      */
  109.     *container_ptr_ptr = NULL;
  110.     /*
  111.      * TODO:345:A: Set up usmDHUserKeyTable cache properties.
  112.      *
  113.      * Also for advanced users, you can set parameters for the
  114.      * cache. Do not change the magic pointer, as it is used
  115.      * by the MFD helper. To completely disable caching, set
  116.      * cache->enabled to 0.
  117.      *
  118.      * other tables access our data pool (usm user list), so not caching
  119.      * is the safest thing to do. The other option would be to add a
  120.      * callback when the list is changed, or a last changed object to
  121.      * verify the list hasn't changed. Until then, reload the cache for
  122.      * every request.
  123.      */
  124.     cache->timeout = -1;   /* seconds */
  125. }                               /* usmDHUserKeyTable_container_init */
  126. /**
  127.  * load cache data
  128.  *
  129.  * TODO:350:M: Implement usmDHUserKeyTable cache load
  130.  *
  131.  * @param container container to which items should be inserted
  132.  *
  133.  * @retval MFD_SUCCESS              : success.
  134.  * @retval MFD_RESOURCE_UNAVAILABLE : Can't access data source
  135.  * @retval MFD_ERROR                : other error.
  136.  *
  137.  *  This function is called to cache the index(es) (and data, optionally)
  138.  *  for the every row in the data set.
  139.  *
  140.  * @remark
  141.  *  While loading the cache, the only important thing is the indexes.
  142.  *  If access to your data is cheap/fast (e.g. you have a pointer to a
  143.  *  structure in memory), it would make sense to update the data here.
  144.  *  If, however, the accessing the data invovles more work (e.g. parsing
  145.  *  some other existing data, or peforming calculations to derive the data),
  146.  *  then you can limit yourself to setting the indexes and saving any
  147.  *  information you will need later. Then use the saved information in
  148.  *  usmDHUserKeyTable_row_prep() for populating data.
  149.  *
  150.  * @note
  151.  *  If you need consistency between rows (like you want statistics
  152.  *  for each row to be from the same time frame), you should set all
  153.  *  data here.
  154.  *
  155.  */
  156. int
  157. usmDHUserKeyTable_cache_load(netsnmp_container * container)
  158. {
  159.     usmDHUserKeyTable_rowreq_ctx *rowreq_ctx;
  160.     struct usmUser *usmuser;
  161.     size_t          count = 0;
  162.     DEBUGMSGTL(("verbose:usmDHUserKeyTable:usmDHUserKeyTable_cache_load",
  163.                 "calledn"));
  164.     /*
  165.      * TODO:351:M: |-> Load/update data in the usmDHUserKeyTable container.
  166.      * loop over your usmDHUserKeyTable data, allocate a rowreq context,
  167.      * set the index(es) [and data, optionally] and insert into
  168.      * the container.
  169.      */
  170.     /*
  171.      * Retrieve the first user from the USM DB
  172.      */
  173.     usmuser = usm_get_userList();
  174.     if (NULL == usmuser) {
  175.         return MFD_SUCCESS;
  176.     }
  177.     for (; usmuser; usmuser = usmuser->next) {
  178.         /*
  179.          * TODO:352:M: |   |-> set indexes in new usmDHUserKeyTable rowreq context.
  180.          * data context will be set from the param (unless NULL,
  181.          *      in which case a new data context will be allocated)
  182.          */
  183.         rowreq_ctx = usmDHUserKeyTable_allocate_rowreq_ctx(usmuser);
  184.         if (NULL == rowreq_ctx) {
  185.             snmp_log(LOG_ERR, "memory allocation failedn");
  186.             return MFD_RESOURCE_UNAVAILABLE;
  187.         }
  188.         if (MFD_SUCCESS !=
  189.             usmDHUserKeyTable_indexes_set(rowreq_ctx,
  190.                                           usmuser->engineID,
  191.                                           usmuser->engineIDLen,
  192.                                           usmuser->name,
  193.                                           strlen(usmuser->name))) {
  194.             snmp_log(LOG_ERR,
  195.                      "error setting index while loading "
  196.                      "usmDHUserKeyTable cache.n");
  197.             usmDHUserKeyTable_release_rowreq_ctx(rowreq_ctx);
  198.             continue;
  199.         }
  200.         /*
  201.          * TODO:352:r: |   |-> populate usmDHUserKeyTable data context.
  202.          * Populate data context here. (optionally, delay until row prep)
  203.          */
  204.         /*
  205.          * non-TRANSIENT data: no need to copy. set pointer to data 
  206.          */
  207.         /*
  208.          * insert into table container
  209.          */
  210.         CONTAINER_INSERT(container, rowreq_ctx);
  211.         ++count;
  212.     }
  213.     DEBUGMSGT(("verbose:usmDHUserKeyTable:usmDHUserKeyTable_cache_load",
  214.                "inserted %d recordsn", count));
  215.     return MFD_SUCCESS;
  216. }                               /* usmDHUserKeyTable_cache_load */
  217. /**
  218.  * cache clean up
  219.  *
  220.  * @param container container with all current items
  221.  *
  222.  *  This optional callback is called prior to all
  223.  *  item's being removed from the container. If you
  224.  *  need to do any processing before that, do it here.
  225.  *
  226.  * @note
  227.  *  The MFD helper will take care of releasing all the row contexts.
  228.  *  If you did not pass a data context pointer when allocating
  229.  *  the rowreq context, the one that was allocated will be deleted.
  230.  *  If you did pass one in, it will not be deleted and that memory
  231.  *  is your responsibility.
  232.  *
  233.  */
  234. void
  235. usmDHUserKeyTable_cache_free(netsnmp_container * container)
  236. {
  237.     DEBUGMSGTL(("verbose:usmDHUserKeyTable:usmDHUserKeyTable_cache_free",
  238.                 "calledn"));
  239.     /*
  240.      * TODO:380:M: Free usmDHUserKeyTable cache.
  241.      */
  242. }                               /* usmDHUserKeyTable_cache_free */
  243. /**
  244.  * prepare row for processing.
  245.  *
  246.  *  When the agent has located the row for a request, this function is
  247.  *  called to prepare the row for processing. If you fully populated
  248.  *  the data context during the index setup phase, you may not need to
  249.  *  do anything.
  250.  *
  251.  * @param rowreq_ctx pointer to a context.
  252.  *
  253.  * @retval MFD_SUCCESS     : success.
  254.  * @retval MFD_ERROR       : other error.
  255.  */
  256. int
  257. usmDHUserKeyTable_row_prep(usmDHUserKeyTable_rowreq_ctx * rowreq_ctx)
  258. {
  259.     DEBUGMSGTL(("verbose:usmDHUserKeyTable:usmDHUserKeyTable_row_prep",
  260.                 "calledn"));
  261.     netsnmp_assert(NULL != rowreq_ctx);
  262.     /*
  263.      * TODO:390:o: Prepare row for request.
  264.      * If populating row data was delayed, this is the place to
  265.      * fill in the row for this request.
  266.      */
  267.     return MFD_SUCCESS;
  268. }                               /* usmDHUserKeyTable_row_prep */
  269. /** @} */