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

SNMP编程

开发平台:

Unix_Linux

  1. .TH "table_data: Helps you implement a table with datamatted storage." 3 "28 Nov 2005" "Version 5.2.1.rc3" "net-snmp" " -*- nroff -*-
  2. .ad l
  3. .nh
  4. .SH NAME
  5. table_data: Helps you implement a table with datamatted storage. - This helper helps you implement a table where all the indexes are expected to be stored within the agent itself and not in some external storage location.  
  6. .PP
  7. .SS "Modules"
  8. .in +1c
  9. .ti -1c
  10. .RI "fBtable_dataset: Helps you implement a table with automatted storage.fP"
  11. .br
  12. .RI "fIThis handler helps you implement a table where all the data is expected to be stored within the agent itself and not in some external storage location. fP"
  13. .PP
  14. .in -1c
  15. .SS "Functions"
  16. .in +1c
  17. .ti -1c
  18. .RI "void fBnetsnmp_table_data_generate_index_oidfP (fBnetsnmp_table_rowfP *row)"
  19. .br
  20. .RI "fIgenerates the index portion of an table oid from a varlist. fP"
  21. .ti -1c
  22. .RI "int fBnetsnmp_table_data_add_rowfP (fBnetsnmp_table_datafP *table, fBnetsnmp_table_rowfP *row)"
  23. .br
  24. .RI "fIAdds a row of data to a given table (stored in proper lexographical order). fP"
  25. .ti -1c
  26. .RI "fBnetsnmp_table_rowfP * fBnetsnmp_table_data_remove_rowfP (fBnetsnmp_table_datafP *table, fBnetsnmp_table_rowfP *row)"
  27. .br
  28. .RI "fIremoves a row of data to a given table and returns it (no free's called) fP"
  29. .ti -1c
  30. .RI "void * fBnetsnmp_table_data_delete_rowfP (fBnetsnmp_table_rowfP *row)"
  31. .br
  32. .RI "fIdeletes a row's memory. fP"
  33. .ti -1c
  34. .RI "void * fBnetsnmp_table_data_remove_and_delete_rowfP (fBnetsnmp_table_datafP *table, fBnetsnmp_table_rowfP *row)"
  35. .br
  36. .RI "fIremoves and frees a row of data to a given table and returns the void * fP"
  37. .ti -1c
  38. .RI "NETSNMP_INLINE void fBnetsnmp_table_data_replace_rowfP (fBnetsnmp_table_datafP *table, fBnetsnmp_table_rowfP *origrow, fBnetsnmp_table_rowfP *newrow)"
  39. .br
  40. .RI "fIswaps out origrow with newrow. fP"
  41. .ti -1c
  42. .RI "fBnetsnmp_table_rowfP * fBnetsnmp_table_data_getfP (fBnetsnmp_table_datafP *table, fBnetsnmp_variable_listfP *indexes)"
  43. .br
  44. .RI "fIfinds the data in 'datalist' stored at 'indexes' fP"
  45. .ti -1c
  46. .RI "fBnetsnmp_table_rowfP * fBnetsnmp_table_data_get_from_oidfP (fBnetsnmp_table_datafP *table, oid *searchfor, size_t searchfor_len)"
  47. .br
  48. .RI "fIfinds the data in 'datalist' stored at the searchfor oid fP"
  49. .ti -1c
  50. .RI "fBnetsnmp_table_rowfP * fBnetsnmp_table_data_get_first_rowfP (fBnetsnmp_table_datafP *table)"
  51. .br
  52. .RI "fIreturns the first row in the table fP"
  53. .ti -1c
  54. .RI "fBnetsnmp_table_rowfP * fBnetsnmp_table_data_get_next_rowfP (fBnetsnmp_table_datafP *table, fBnetsnmp_table_rowfP *row)"
  55. .br
  56. .RI "fIreturns the next row in the table fP"
  57. .ti -1c
  58. .RI "fBnetsnmp_mib_handlerfP * fBnetsnmp_get_table_data_handlerfP (fBnetsnmp_table_datafP *table)"
  59. .br
  60. .RI "fICreates a table_data handler and returns it. fP"
  61. .ti -1c
  62. .RI "int fBnetsnmp_register_table_datafP (fBnetsnmp_handler_registrationfP *reginfo, fBnetsnmp_table_datafP *table, fBnetsnmp_table_registration_infofP *table_info)"
  63. .br
  64. .RI "fIregisters a handler as a data table. fP"
  65. .ti -1c
  66. .RI "int fBnetsnmp_register_read_only_table_datafP (fBnetsnmp_handler_registrationfP *reginfo, fBnetsnmp_table_datafP *table, fBnetsnmp_table_registration_infofP *table_info)"
  67. .br
  68. .RI "fIregisters a handler as a read-only data table If table_info != NULL, it registers it as a normal table too. fP"
  69. .ti -1c
  70. .RI "int fBnetsnmp_table_data_helper_handlerfP (fBnetsnmp_mib_handlerfP *handler, fBnetsnmp_handler_registrationfP *reginfo, fBnetsnmp_agent_request_infofP *reqinfo, fBnetsnmp_request_infofP *requests)"
  71. .br
  72. .RI "fIThe helper handler that takes care of passing a specific row of data down to the lower handler(s). fP"
  73. .ti -1c
  74. .RI "fBnetsnmp_table_datafP * fBnetsnmp_create_table_datafP (const char *name)"
  75. .br
  76. .RI "fIcreates and returns a pointer to table data set fP"
  77. .ti -1c
  78. .RI "fBnetsnmp_table_rowfP * fBnetsnmp_create_table_data_rowfP (void)"
  79. .br
  80. .RI "fIcreates and returns a pointer to table data set fP"
  81. .ti -1c
  82. .RI "NETSNMP_INLINE void fBnetsnmp_insert_table_rowfP (fBnetsnmp_request_infofP *request, fBnetsnmp_table_rowfP *row)"
  83. .br
  84. .RI "fIinserts a newly created table_data row into a request fP"
  85. .ti -1c
  86. .RI "fBnetsnmp_table_rowfP * fBnetsnmp_extract_table_rowfP (fBnetsnmp_request_infofP *request)"
  87. .br
  88. .RI "fIextracts the row being accessed passed from the table_data helper fP"
  89. .ti -1c
  90. .RI "fBnetsnmp_table_datafP * fBnetsnmp_extract_tablefP (fBnetsnmp_request_infofP *request)"
  91. .br
  92. .RI "fIextracts the table being accessed passed from the table_data helper fP"
  93. .ti -1c
  94. .RI "void * fBnetsnmp_extract_table_row_datafP (fBnetsnmp_request_infofP *request)"
  95. .br
  96. .RI "fIextracts the data from the row being accessed passed from the table_data helper fP"
  97. .ti -1c
  98. .RI "int fBnetsnmp_table_data_build_resultfP (fBnetsnmp_handler_registrationfP *reginfo, fBnetsnmp_agent_request_infofP *reqinfo, fBnetsnmp_request_infofP *request, fBnetsnmp_table_rowfP *row, int column, u_char type, u_char *result_data, size_t result_data_len)"
  99. .br
  100. .RI "fIbuilds a result given a row, a varbind to set and the data fP"
  101. .ti -1c
  102. .RI "fBnetsnmp_table_rowfP * fBnetsnmp_table_data_clone_rowfP (fBnetsnmp_table_rowfP *row)"
  103. .br
  104. .RI "fIclones a data row. fP"
  105. .ti -1c
  106. .RI "int fBnetsnmp_table_data_num_rowsfP (fBnetsnmp_table_datafP *table)"
  107. .br
  108. .in -1c
  109. .SH "Detailed Description"
  110. .PP 
  111. This helper helps you implement a table where all the indexes are expected to be stored within the agent itself and not in some external storage location. 
  112. .PP
  113. It can be used to store a list of rows, where a row consists of the indexes to the table and a generic data pointer. You can then implement a subhandler which is passed the exact row definition and data it must return data for or accept data for. Complex GETNEXT handling is greatly simplified in this case.
  114. .SH "Function Documentation"
  115. .PP 
  116. .SS "fBnetsnmp_table_datafP* netsnmp_create_table_data (const char * name)"
  117. .PP
  118. creates and returns a pointer to table data set 
  119. .PP
  120. Definition at line 563 of file table_data.c.
  121. .PP
  122. References netsnmp_table_data_s::name, and SNMP_MALLOC_TYPEDEF.
  123. .PP
  124. Referenced by netsnmp_create_table_data_set().
  125. .SS "fBnetsnmp_table_rowfP* netsnmp_create_table_data_row (void)"
  126. .PP
  127. creates and returns a pointer to table data set 
  128. .PP
  129. fBExamples: fP
  130. .in +1c
  131. fBdata_set.cfP.
  132. .PP
  133. Definition at line 573 of file table_data.c.
  134. .PP
  135. References SNMP_MALLOC_TYPEDEF.
  136. .PP
  137. Referenced by netsnmp_config_parse_add_row(), and netsnmp_table_data_set_create_row_from_defaults().
  138. .SS "fBnetsnmp_table_datafP* netsnmp_extract_table (fBnetsnmp_request_infofP * request)"
  139. .PP
  140. extracts the table being accessed passed from the table_data helper 
  141. .PP
  142. Definition at line 654 of file table_data.c.
  143. .PP
  144. References netsnmp_request_get_list_data().
  145. .SS "fBnetsnmp_table_rowfP* netsnmp_extract_table_row (fBnetsnmp_request_infofP * request)"
  146. .PP
  147. extracts the row being accessed passed from the table_data helper 
  148. .PP
  149. Definition at line 646 of file table_data.c.
  150. .PP
  151. References netsnmp_request_get_list_data().
  152. .PP
  153. Referenced by netsnmp_extract_table_row_data(), and netsnmp_table_data_set_helper_handler().
  154. .SS "void* netsnmp_extract_table_row_data (fBnetsnmp_request_infofP * request)"
  155. .PP
  156. extracts the data from the row being accessed passed from the table_data helper 
  157. .PP
  158. Definition at line 663 of file table_data.c.
  159. .PP
  160. References netsnmp_table_row_s::data, netsnmp_extract_table_row(), and NULL.
  161. .PP
  162. Referenced by netsnmp_extract_table_data_set_column().
  163. .SS "fBnetsnmp_mib_handlerfP* netsnmp_get_table_data_handler (fBnetsnmp_table_datafP * table)"
  164. .PP
  165. Creates a table_data handler and returns it. 
  166. .PP
  167. Definition at line 282 of file table_data.c.
  168. .PP
  169. References netsnmp_mib_handler_s::flags, MIB_HANDLER_AUTO_NEXT, netsnmp_mib_handler_s::myvoid, netsnmp_create_handler(), netsnmp_table_data_helper_handler(), NULL, and snmp_log().
  170. .PP
  171. Referenced by netsnmp_register_table_data().
  172. .SS "NETSNMP_INLINE void netsnmp_insert_table_row (fBnetsnmp_request_infofP * request, fBnetsnmp_table_rowfP * row)"
  173. .PP
  174. inserts a newly created table_data row into a request 
  175. .PP
  176. Definition at line 581 of file table_data.c.
  177. .PP
  178. References build_oid_noalloc(), netsnmp_table_request_info_s::indexes, netsnmp_create_data_list(), netsnmp_extract_table_info(), netsnmp_request_add_list_data(), netsnmp_request_info_s::next, NULL, netsnmp_request_info_s::prev, and snmp_oid_compare().
  179. .SS "int netsnmp_register_read_only_table_data (fBnetsnmp_handler_registrationfP * reginfo, fBnetsnmp_table_datafP * table, fBnetsnmp_table_registration_infofP * table_info)"
  180. .PP
  181. registers a handler as a read-only data table If table_info != NULL, it registers it as a normal table too. 
  182. .PP
  183. Definition at line 316 of file table_data.c.
  184. .PP
  185. References netsnmp_get_read_only_handler(), netsnmp_inject_handler(), and netsnmp_register_table_data().
  186. .SS "int netsnmp_register_table_data (fBnetsnmp_handler_registrationfP * reginfo, fBnetsnmp_table_datafP * table, fBnetsnmp_table_registration_infofP * table_info)"
  187. .PP
  188. registers a handler as a data table. 
  189. .PP
  190. If table_info != NULL, it registers it as a normal table too. 
  191. .PP
  192. Definition at line 305 of file table_data.c.
  193. .PP
  194. References netsnmp_get_table_data_handler(), netsnmp_inject_handler(), and netsnmp_register_table().
  195. .PP
  196. Referenced by netsnmp_register_read_only_table_data(), and netsnmp_register_table_data_set().
  197. .SS "int netsnmp_table_data_add_row (fBnetsnmp_table_datafP * table, fBnetsnmp_table_rowfP * row)"
  198. .PP
  199. Adds a row of data to a given table (stored in proper lexographical order). 
  200. .PP
  201. returns SNMPERR_SUCCESS on successful addition. or SNMPERR_GENERR on failure (E.G., indexes already existed)
  202. .PP
  203. xxx-rks: remove invalid row? 
  204. .PP
  205. Definition at line 51 of file table_data.c.
  206. .PP
  207. References netsnmp_table_data_s::first_row, netsnmp_table_row_s::index_oid, netsnmp_table_row_s::index_oid_len, netsnmp_table_row_s::indexes, netsnmp_table_data_s::last_row, netsnmp_table_data_s::name, netsnmp_table_data_generate_index_oid(), netsnmp_table_row_s::next, NULL, netsnmp_table_row_s::prev, snmp_free_varbind(), snmp_log(), snmp_oid_compare(), and netsnmp_table_data_s::store_indexes.
  208. .PP
  209. Referenced by netsnmp_config_parse_add_row(), netsnmp_table_data_replace_row(), and netsnmp_table_dataset_add_row().
  210. .SS "int netsnmp_table_data_build_result (fBnetsnmp_handler_registrationfP * reginfo, fBnetsnmp_agent_request_infofP * reqinfo, fBnetsnmp_request_infofP * request, fBnetsnmp_table_rowfP * row, int column, u_char type, u_char * result_data, size_t result_data_len)"
  211. .PP
  212. builds a result given a row, a varbind to set and the data 
  213. .PP
  214. Definition at line 675 of file table_data.c.
  215. .PP
  216. References netsnmp_table_row_s::index_oid, netsnmp_table_row_s::index_oid_len, netsnmp_agent_request_info_s::mode, netsnmp_request_info_s::requestvb, netsnmp_handler_registration_s::rootoid, netsnmp_handler_registration_s::rootoid_len, snmp_set_var_objid(), and snmp_set_var_typed_value().
  217. .PP
  218. Referenced by netsnmp_table_data_helper_handler(), and netsnmp_table_data_set_helper_handler().
  219. .SS "fBnetsnmp_table_rowfP* netsnmp_table_data_clone_row (fBnetsnmp_table_rowfP * row)"
  220. .PP
  221. clones a data row. 
  222. .PP
  223. DOES NOT CLONE THE CONTAINED DATA. 
  224. .PP
  225. Definition at line 709 of file table_data.c.
  226. .PP
  227. References memdup(), NULL, and snmp_clone_varbind().
  228. .PP
  229. Referenced by netsnmp_table_data_set_clone_row().
  230. .SS "void* netsnmp_table_data_delete_row (fBnetsnmp_table_rowfP * row)"
  231. .PP
  232. deletes a row's memory. 
  233. .PP
  234. returns the void data that it doesn't know how to delete. 
  235. .PP
  236. Definition at line 177 of file table_data.c.
  237. .PP
  238. References netsnmp_table_row_s::data, netsnmp_table_row_s::index_oid, netsnmp_table_row_s::indexes, NULL, SNMP_FREE, and snmp_free_varbind().
  239. .PP
  240. Referenced by netsnmp_table_data_remove_and_delete_row(), and netsnmp_table_dataset_delete_row().
  241. .SS "void netsnmp_table_data_generate_index_oid (fBnetsnmp_table_rowfP * row)"
  242. .PP
  243. generates the index portion of an table oid from a varlist. 
  244. .PP
  245. Definition at line 39 of file table_data.c.
  246. .PP
  247. References build_oid(), netsnmp_table_row_s::index_oid, netsnmp_table_row_s::index_oid_len, netsnmp_table_row_s::indexes, and NULL.
  248. .PP
  249. Referenced by netsnmp_table_data_add_row().
  250. .SS "fBnetsnmp_table_rowfP* netsnmp_table_data_get (fBnetsnmp_table_datafP * table, fBnetsnmp_variable_listfP * indexes)"
  251. .PP
  252. finds the data in 'datalist' stored at 'indexes' 
  253. .PP
  254. Definition at line 231 of file table_data.c.
  255. .PP
  256. References build_oid_noalloc(), netsnmp_table_data_get_from_oid(), and NULL.
  257. .SS "fBnetsnmp_table_rowfP* netsnmp_table_data_get_first_row (fBnetsnmp_table_datafP * table)"
  258. .PP
  259. returns the first row in the table 
  260. .PP
  261. Definition at line 263 of file table_data.c.
  262. .PP
  263. References netsnmp_table_data_s::first_row, and NULL.
  264. .SS "fBnetsnmp_table_rowfP* netsnmp_table_data_get_from_oid (fBnetsnmp_table_datafP * table, oid * searchfor, size_t searchfor_len)"
  265. .PP
  266. finds the data in 'datalist' stored at the searchfor oid 
  267. .PP
  268. Definition at line 245 of file table_data.c.
  269. .PP
  270. References netsnmp_table_data_s::first_row, netsnmp_table_row_s::index_oid, netsnmp_table_row_s::index_oid_len, netsnmp_table_row_s::next, NULL, and snmp_oid_compare().
  271. .PP
  272. Referenced by netsnmp_table_data_get(), and netsnmp_table_data_helper_handler().
  273. .SS "fBnetsnmp_table_rowfP* netsnmp_table_data_get_next_row (fBnetsnmp_table_datafP * table, fBnetsnmp_table_rowfP * row)"
  274. .PP
  275. returns the next row in the table 
  276. .PP
  277. Definition at line 272 of file table_data.c.
  278. .PP
  279. References netsnmp_table_row_s::next, and NULL.
  280. .SS "int netsnmp_table_data_helper_handler (fBnetsnmp_mib_handlerfP * handler, fBnetsnmp_handler_registrationfP * reginfo, fBnetsnmp_agent_request_infofP * reqinfo, fBnetsnmp_request_infofP * requests)"
  281. .PP
  282. The helper handler that takes care of passing a specific row of data down to the lower handler(s). 
  283. .PP
  284. It sets request->processed if the request should not be handled.
  285. .PP
  286. Definition at line 332 of file table_data.c.
  287. .PP
  288. References netsnmp_table_request_info_s::colnum, netsnmp_table_data_s::first_row, netsnmp_mib_handler_s::flags, netsnmp_table_row_s::index_oid, netsnmp_table_row_s::index_oid_len, netsnmp_table_registration_info_s::max_column, MIB_HANDLER_AUTO_NEXT_OVERRIDE_ONCE, netsnmp_table_registration_info_s::min_column, netsnmp_agent_request_info_s::mode, netsnmp_mib_handler_s::myvoid, variable_list::name, variable_list::name_length, netsnmp_call_next_handler(), netsnmp_create_data_list(), netsnmp_extract_table_info(), netsnmp_find_table_registration_info(), netsnmp_request_add_list_data(), netsnmp_set_request_error(), netsnmp_table_data_build_result(), netsnmp_table_data_get_from_oid(), netsnmp_table_row_s::next, netsnmp_request_info_s::next, NULL, netsnmp_request_info_s::processed, netsnmp_request_info_s::requestvb, netsnmp_handler_registration_s::rootoid, netsnmp_handler_registration_s::rootoid_len, SNMP_MIN, snmp_oid_compare(), and variable_list::type.
  289. .PP
  290. Referenced by netsnmp_get_table_data_handler().
  291. .SS "void* netsnmp_table_data_remove_and_delete_row (fBnetsnmp_table_datafP * table, fBnetsnmp_table_rowfP * row)"
  292. .PP
  293. removes and frees a row of data to a given table and returns the void * 
  294. .PP
  295. returns the void * data on successful deletion. or NULL on failure (bad arguments)
  296. .PP
  297. Definition at line 206 of file table_data.c.
  298. .PP
  299. References netsnmp_table_data_delete_row(), netsnmp_table_data_remove_row(), and NULL.
  300. .PP
  301. Referenced by netsnmp_table_dataset_remove_and_delete_row(), and netsnmp_table_dataset_remove_row().
  302. .SS "fBnetsnmp_table_rowfP* netsnmp_table_data_remove_row (fBnetsnmp_table_datafP * table, fBnetsnmp_table_rowfP * row)"
  303. .PP
  304. removes a row of data to a given table and returns it (no free's called) 
  305. .PP
  306. returns the row pointer itself on successful removing. or NULL on failure (bad arguments)
  307. .PP
  308. Definition at line 155 of file table_data.c.
  309. .PP
  310. References netsnmp_table_data_s::first_row, netsnmp_table_data_s::last_row, netsnmp_table_row_s::next, NULL, and netsnmp_table_row_s::prev.
  311. .PP
  312. Referenced by netsnmp_table_data_remove_and_delete_row(), and netsnmp_table_data_replace_row().
  313. .SS "NETSNMP_INLINE void netsnmp_table_data_replace_row (fBnetsnmp_table_datafP * table, fBnetsnmp_table_rowfP * origrow, fBnetsnmp_table_rowfP * newrow)"
  314. .PP
  315. swaps out origrow with newrow. 
  316. .PP
  317. This does *not* delete/free anything! 
  318. .PP
  319. Definition at line 221 of file table_data.c.
  320. .PP
  321. References netsnmp_table_data_add_row(), and netsnmp_table_data_remove_row().
  322. .PP
  323. Referenced by netsnmp_table_dataset_replace_row().