⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 mfd-access-container-cached-defines.m2i

📁 snmp的源代码,已经在我的ubuntu下编译通过
💻 M2I
📖 第 1 页 / 共 2 页
字号:
############################################################  -*- c -*-###generic include for XXX. Do not use directly.###### $Id: mfd-access-container-cached-defines.m2i,v 1.16.2.1 2005/01/06 14:51:52 rstory Exp $########################################################################@if $m2c_mark_boundary == 1@/** START code generated by $RCSfile: mfd-access-container-cached-defines.m2i,v $ $Revision: 1.16.2.1 $ */@end@##//######################################################################//@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@##//@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@if $m2c_processing_type eq 'h'@/* * TODO:180:o: Review $context cache timeout. * The number of seconds before the cache times out */#define $context.uc_CACHE_TIMEOUT   60void ${context}_container_init(netsnmp_container **container_ptr_ptr,                             netsnmp_cache *cache);int ${context}_cache_load(netsnmp_container *container);void ${context}_cache_free(netsnmp_container *container);@   if $m2c_include_examples == 1@$example_start/* ********************************************************************* * Since we have no idea how you really access your data, we'll go with * a worst case example: a flat text file. @   if $m2c_data_transient != 2@ @      print Example code is for fully transient data. Either turn off@ @      print m2c_include_examples or set m2c_data_transient to 2.@ @      exit@ @   end@ */#define MAX_LINE_SIZE 256$example_end@   end@ // example@end@ // m2c_processing_type eq 'h'##//######################################################################//@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@##//@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@if $m2c_processing_type eq 'c'@/** * container-cached overview * *//*********************************************************************** * * cache * ***********************************************************************//** * container initialization * * @param container_ptr_ptr A pointer to a container pointer. If you *        create a custom container, use this parameter to return it *        to the MFD helper. If set to NULL, the MFD helper will *        allocate a container for you. * @param  cache A pointer to a cache structure. You can set the timeout *         and other cache flags using this pointer. * *  This function is called at startup to allow you to customize certain *  aspects of the access method. For the most part, it is for advanced *  users. The default code should suffice for most cases. If no custom *  container is allocated, the MFD code will create one for your. * *  This is also the place to set up cache behavior. The default, to *  simply set the cache timeout, will work well with the default *  container. If you are using a custom container, you may want to *  look at the cache helper documentation to see if there are any *  flags you want to set. * * @remark *  This would also be a good place to do any initialization needed *  for you data source. For example, opening a connection to another *  process that will supply the data, opening a database, etc. */void${context}_container_init(netsnmp_container **container_ptr_ptr,                        netsnmp_cache *cache){    DEBUGMSGTL(("verbose:${context}:${context}_container_init","called\n"));        if((NULL == cache) || (NULL == container_ptr_ptr)) {        snmp_log(LOG_ERR,"bad params to ${context}_container_init\n");        return;    }    /*     * For advanced users, you can use a custom container. If you     * do not create one, one will be created for you.     */    *container_ptr_ptr = NULL;    /*     * TODO:345:A: Set up $context cache properties.     *     * Also for advanced users, you can set parameters for the     * cache. Do not change the magic pointer, as it is used     * by the MFD helper. To completely disable caching, set     * cache->enabled to 0.     */    cache->timeout = $context.uc_CACHE_TIMEOUT; /* seconds */} /* ${context}_container_init *//** * load cache data * * TODO:350:M: Implement $context cache load * * @param container container to which items should be inserted * * @retval MFD_SUCCESS              : success. * @retval MFD_RESOURCE_UNAVAILABLE : Can't access data source * @retval MFD_ERROR                : other error. * *  This function is called to cache the index(es) (and data, optionally) *  for the every row in the data set. * * @remark *  While loading the cache, the only important thing is the indexes. *  If access to your data is cheap/fast (e.g. you have a pointer to a *  structure in memory), it would make sense to update the data here. *  If, however, the accessing the data invovles more work (e.g. parsing *  some other existing data, or peforming calculations to derive the data), *  then you can limit yourself to setting the indexes and saving any *  information you will need later. Then use the saved information in *  ${context}_row_prep() for populating data. * * @note *  If you need consistency between rows (like you want statistics *  for each row to be from the same time frame), you should set all *  data here. * */int${context}_cache_load(netsnmp_container *container){    ${context}_rowreq_ctx *rowreq_ctx;    size_t                 count = 0;@if $m2c_include_examples == 1@        /*     * this example code is based on a data source that is a     * text file to be read and parsed.     */    FILE *filep;    char line[MAX_LINE_SIZE];    /*     * temporary storage for index values     */@  foreach $node index@@    include m2c_setup_node.m2i@        /*         * $m2c_node_summary         */@    if $m2c_node_needlength == 1@@        eval $m2c_gi_maxlen = (126 - $node.oidlength - $m2c_gi_others)@@        if $m2c_node_maxlen > $m2c_gi_maxlen@@            eval $m2c_node_maxlen = $m2c_gi_maxlen@        /** 128 - 1(entry) - 1(col) - $m2c_gi_others(other indexes) = $m2c_node_maxlen */@        end@@    end@ # needlength@    include node-storage.m2i@@  end@ // foreach@end@ // examples    DEBUGMSGTL(("verbose:${context}:${context}_cache_load","called\n"));@if $m2c_include_examples == 1@$example_start    /*     * open our data file.     */    filep = fopen("/etc/dummy.conf", "r");    if(NULL ==  filep) {        return MFD_RESOURCE_UNAVAILABLE;    }$example_end@end@ // example    /*     * TODO:351:M: |-> Load/update data in the $context container.     * loop over your $context data, allocate a rowreq context,     * set the index(es) [and data, optionally] and insert into     * the container.     */    while( 1 ) {@   if $m2c_include_examples == 0@        /*         * check for end of data; bail out if there is no more data         */        if( 1 )            break;@   else@$example_start    /*     * get a line (skip blank lines)     */    do {        if (!fgets(line, sizeof(line), filep)) {            /* we're done */            fclose(filep);            filep = NULL;        }    } while (filep && (line[0] == '\n'));    /*     * check for end of data     */    if(NULL == filep)        break;    /*     * parse line into variables     */$example_end@    end@ # example        /*         * TODO:352:M: |   |-> set indexes in new $context rowreq context.@   eval $m2c_tmp = ""@@   if ($m2c_data_allocate == 1) || ($m2c_data_init == 1)@@      eval $m2c_tmp = "NULL"@@      if ($m2c_data_allocate == 1) && ($m2c_data_init == 1)@@         eval $m2c_tmp = "$m2c_tmp, NULL"@         * data context will be set from the first param (unless NULL,         *      in which case a new data context will be allocated)         * the second param will be passed, with the row context, to         *      ${context}rowreq_ctx_init.@      else@         * data context will be set from the param (unless NULL,         *      in which case a new data context will be allocated)@      @end@@   end@         */        rowreq_ctx = ${context}_allocate_rowreq_ctx($m2c_tmp);        if (NULL == rowreq_ctx) {            snmp_log(LOG_ERR, "memory allocation failed\n");            return MFD_RESOURCE_UNAVAILABLE;        }        if(MFD_SUCCESS != ${context}_indexes_set(rowreq_ctx@   foreach $node index@

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -