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

SNMP编程

开发平台:

Unix_Linux

  1. .TH DEFAULT_STORE 3 "25 Jun 2002" VVERSIONINFO "Net-SNMP"
  2. .UC 5
  3. .SH NAME
  4. default_store - generic storage of global data.
  5. .SH SYNOPSIS
  6. .B #include <net-snmp/net-snmp-config.h>
  7. .br
  8. .B #include <net-snmp/config_api.h>
  9. .BI "int netsnmp_ds_set_boolean(int " store ", int " which ", int " val ");"
  10. .br
  11. .BI "int netsnmp_ds_get_boolean(int " store ", int " which ");"
  12. .br
  13. .BI "int netsnmp_ds_set_int(int " store ", int " which ", int " val ");"
  14. .br
  15. .BI "int netsnmp_ds_get_int(int " store ", int " which ");"
  16. .br
  17. .BI "int netsnmp_ds_set_string(int " store ", int " which ", "
  18. .br
  19. .BI "                          const char *" val ");"
  20. .br
  21. .BI "char *netsnmp_ds_get_string(int " store ", int " which ");"
  22. .br
  23. .BI "int netsnmp_ds_register_config(u_char " type ", "
  24. .br
  25. .BI "                               const char *" ftype ","
  26. .br
  27. .BI "                               const char *" token ","
  28. .br
  29. .BI "                               int " store ", int " which ");"
  30. .br
  31. .BI "int netsnmp_ds_register_premib(u_char " type ", "
  32. .br
  33. .BI "                               const char *" ftype ","
  34. .br
  35. .BI "                               const char *" token ","
  36. .br
  37. .BI "                               int " store ", int " which ");"
  38. .br
  39. .BI "void netsnmp_ds_shutdown(void);"
  40. .fi
  41. .SH DESCRIPTION
  42. The purpose of the default storage is three-fold:
  43. .IP 1)
  44. To create a global storage space without creating a whole bunch of
  45. globally accessible variables or a whole bunch of access functions to
  46. work with more privately restricted variables.
  47. .IP 2)
  48. To provide a single location where the thread locking needs to be
  49. implemented. At the time of this writing, however, thread locking is not
  50. yet in place.
  51. .IP 3)
  52. To reduce the number of cross dependencies between code pieces that
  53. may or may not be linked together in the long run. This provides for a
  54. single location in which configuration data, for example, can be
  55. stored for a separate section of code that may not be linked in to
  56. the application in question.
  57. .PP
  58. The functions defined here implement these goals.
  59. .PP
  60. Currently, three data types are supported: booleans, integers, and
  61. strings. Each of these data types have separate storage
  62. spaces. In addition, the storage space for each data type is divided
  63. further by the application level.   Currently, there are two storage
  64. spaces. The first is reserved for the SNMP library itself. The second 
  65. is intended for use in applications and is not modified or checked by
  66. the library, and, therefore, this is the space usable by you.
  67. .PP
  68. You can think of these storage spaces as being 3 arrays, something
  69. like bool_storage[storeid][which], int_storage[storeid][which], and
  70. string_storage[storeid][which].  The data is then accessed through the 
  71. functions defined below.  For data you wish to store, you should use a 
  72. .I store
  73. parameter of
  74. .BR NETSNMP_DS_APPLICATION_ID .
  75. .PP
  76. The storage space used by the library (for which the 
  77. .I store
  78. parameter is
  79. .BR NETSNMP_DS_LIBRARY_ID )
  80. is defined in the default_store.h file, which currently contains the 
  81. following defines: 
  82. .PP
  83. .nf