generic-table-indexes.m2i
上传用户:wxp200602
上传日期:2007-10-30
资源大小:4028k
文件大小:2k
源码类别:

SNMP编程

开发平台:

Unix_Linux

  1. #############################################################  -*- c -*-
  2. ## generic include for XXX. Do not use directly.
  3. ##
  4. ## $Id: generic-table-indexes.m2i,v 1.10 2004/10/15 00:49:24 rstory Exp $
  5. ########################################################################
  6. @if $m2c_mark_boundary == 1@
  7. /** START code generated by $RCSfile: generic-table-indexes.m2i,v $ $Revision: 1.10 $ */
  8. @end@
  9. ########################################################################
  10. ##
  11. /*
  12.  * TODO:120:r: |-> Review $context mib index.
  13.  * This structure is used to represent the index for $context.
  14.  */
  15. @eval $m2c_gi_others = (count_indexes($context) - 1)@
  16. @eval $m2c_gi_len = 0@
  17. @eval $m2c_gi_warn = 0@
  18. typedef struct ${context}_mib_index_s {
  19. @foreach $node index@
  20. @    include m2c_setup_node.m2i@
  21. ##@    include details-node.m2i@
  22.         /*
  23.          * $m2c_node_summary
  24.          */
  25. @    if $m2c_node_needlength == 1@
  26. @        eval $m2c_gi_warn = 1@
  27. @        eval $m2c_gi_maxlen = (128 - $node.oidlength - $m2c_gi_others - 1)@
  28. @        if $m2c_node_maxlen > $m2c_gi_maxlen@
  29. @            eval $m2c_node_maxlen = $m2c_gi_maxlen@
  30.         /** 128 - $m2c_gi_others(other indexes) - oid length($node.oidlength) = $m2c_node_maxlen */
  31. @        end@
  32. @        eval $m2c_gi_len = $m2c_gi_len + $m2c_node_maxlen + 1@
  33. @    elsif "$node.type" eq "ASN_IPADDRESS"@
  34. @        eval $m2c_gi_len = $m2c_gi_len + 4@
  35. @    else@
  36. @        eval $m2c_gi_len = $m2c_gi_len + 1@
  37. @    end@ # needlength
  38. @    include node-storage.m2i@
  39. @end@ # foreach
  40. } ${context}_mib_index;
  41.     /*
  42.      * TODO:121:r: |   |-> Review $context max index length.
  43.      * If you KNOW that your indexes will never exceed a certain
  44.      * length, update this macro to that length.
  45. @    if $m2c_gi_warn == 1@
  46.      *
  47.      * BE VERY CAREFUL TO TAKE INTO ACCOUNT THE MAXIMUM
  48.      * POSSIBLE LENGHT FOR EVERY VARIABLE LENGTH INDEX!
  49.      * Guessing 128 - col/entry(2)  - oid len($context.oidlength)
  50. @        if $m2c_gi_len > 126@
  51. @            eval $m2c_gi_len = 126 - $context.oidlength@
  52. @        end@
  53. ##@    else@
  54. ##@        eval $m2c_gi_len = count_indexes($context)@
  55. @    end@
  56. */
  57. #define MAX_${context}_IDX_LEN     $m2c_gi_len
  58. ##
  59. ########################################################################
  60. @if $m2c_mark_boundary == 1@
  61. /** END code generated by $RCSfile: generic-table-indexes.m2i,v $ $Revision: 1.10 $ */
  62. @end@