table_container
[table]

Helps you implement a table when data can be found via a netsnmp_container. [詳細]

関数

container_table_datanetsnmp_tcontainer_create_table (const char *name, netsnmp_container *container, long flags)
void netsnmp_tcontainer_delete_table (container_table_data *table)
int netsnmp_tcontainer_add_row (container_table_data *table, netsnmp_index *row)
netsnmp_indexnetsnmp_tcontainer_remove_row (container_table_data *table, netsnmp_index *row)
int netsnmp_tcontainer_replace_row (container_table_data *table, netsnmp_index *old_row, netsnmp_index *new_row)
netsnmp_mib_handlernetsnmp_container_table_handler_get (netsnmp_table_registration_info *tabreg, netsnmp_container *container, char key_type)
 returns a netsnmp_mib_handler object for the table_container helper
int netsnmp_container_table_register (netsnmp_handler_registration *reginfo, netsnmp_table_registration_info *tabreg, netsnmp_container *container, char key_type)
netsnmp_containernetsnmp_container_table_container_extract (netsnmp_request_info *request)
 retrieve the container used by the table_container helper
void * netsnmp_container_table_row_extract (netsnmp_request_info *request)
 find the context data used by the table_container helper
void * netsnmp_container_table_extract_context (netsnmp_request_info *request)
 find the context data used by the table_container helper
void netsnmp_container_table_row_insert (netsnmp_request_info *request, netsnmp_index *row)
 inserts a newly created table_container entry into a request list
netsnmp_indexnetsnmp_table_index_find_next_row (netsnmp_container *c, netsnmp_table_request_info *tblreq)
 deprecated, backwards compatability only

説明

Helps you implement a table when data can be found via a netsnmp_container.

The table_container handler is used (automatically) in conjuntion with the table handler.

This handler will use the index information provided by the table handler to find the row needed to process the request.

The container must use one of 3 key types. It is the sub-handler's responsibility to ensure that the container and key type match (unless neither is specified, in which case a default will be used.)

The current key types are:

TABLE_CONTAINER_KEY_NETSNMP_INDEX The container should do comparisons based on a key that may be cast to a netsnmp index (netsnmp_index *). This index contains only the index portion of the OID, not the entire OID.

TABLE_CONTAINER_KEY_VARBIND_INDEX The container should do comparisons based on a key that may be cast to a netsnmp variable list (netsnmp_variable_list *). This variable list will contain one varbind for each index component.

TABLE_CONTAINER_KEY_VARBIND_RAW (NOTE: unimplemented) While not yet implemented, future plans include passing the request varbind with the full OID to a container.

If a key type is not specified at registration time, the default key type of TABLE_CONTAINER_KEY_NETSNMP_INDEX will be used. If a container is provided, or the handler name is aliased to a container type, the container must use a netsnmp index.

If no container is provided, a lookup will be made based on the sub-handler's name, or if that isn't found, "table_container". The table_container key type will be netsnmp_index.

The container must, at a minimum, implement find and find_next. If a NULL key is passed to the container, it must return the first item, if any. All containers provided by net-snmp fulfil this requirement.

This handler will only register to process 'data lookup' modes. In traditional net-snmp modes, that is any GET-like mode (GET, GET-NEXT, GET-BULK) or the first phase of a SET (RESERVE1). In the new baby-steps mode, DATA_LOOKUP is it's own mode, and is a pre-cursor to other modes.

When called, the handler will call the appropriate container method with the appropriate key type. If a row was not found, the result depends on the mode.

GET Processing An exact match must be found. If one is not, the error NOSUCHINSTANCE is set.

GET-NEXT / GET-BULK If no row is found, the column number will be increased (using any valid_columns structure that may have been provided), and the first row will be retrieved. If no first row is found, the processed flag will be set, so that the sub-handler can skip any processing related to the request. The agent will notice this unsatisfied request, and attempt to pass it to the next appropriate handler.

SET If the hander did not register with the HANDLER_CAN_NOT_CREATE flag set in the registration modes, it is assumed that this is a row creation request and a NULL row is added to the request's data list. The sub-handler is responsbile for dealing with any row creation contraints and inserting any newly created rows into the container and the request's data list.

If a row is found, it will be inserted into the request's data list. The sub-handler may retrieve it by calling netsnmp_container_table_extract_context(request); * NOTE NOTE NOTE:

This helper and it's API are still being tested and are subject to change.


関数

netsnmp_container* netsnmp_container_table_container_extract ( netsnmp_request_info request  ) 

retrieve the container used by the table_container helper

table_container.c320 行で定義されています。

参照先 netsnmp_request_get_list_data().

void* netsnmp_container_table_extract_context ( netsnmp_request_info request  ) 

find the context data used by the table_container helper

table_container.c339 行で定義されています。

参照先 netsnmp_request_get_list_data().

netsnmp_mib_handler* netsnmp_container_table_handler_get ( netsnmp_table_registration_info tabreg,
netsnmp_container container,
char  key_type 
)

returns a netsnmp_mib_handler object for the table_container helper

table_container.c254 行で定義されています。

参照先 netsnmp_container_s::comparenetsnmp_mib_handler_s::flagscontainer_table_data_s::key_typeMIB_HANDLER_AUTO_NEXTnetsnmp_mib_handler_s::myvoidnetsnmp_container_s::ncomparenetsnmp_create_handler()NULLsnmp_log()SNMP_MALLOC_TYPEDEFcontainer_table_data_s::tablecontainer_table_data_s::tblreg_info.

参照元 netsnmp_container_table_register().

void* netsnmp_container_table_row_extract ( netsnmp_request_info request  ) 

find the context data used by the table_container helper

table_container.c329 行で定義されています。

参照先 netsnmp_request_get_list_data().

参照元 _netsnmp_tdata_helper_handler()netsnmp_tdata_extract_row().

void netsnmp_container_table_row_insert ( netsnmp_request_info request,
netsnmp_index row 
)

inserts a newly created table_container entry into a request list

table_container.c351 行で定義されています。

参照先 build_oid_noalloc()netsnmp_table_request_info_s::indexesnetsnmp_create_data_list()netsnmp_extract_table_info()netsnmp_request_add_list_data()netsnmp_request_info_s::nextNULLnetsnmp_request_info_s::prevnetsnmp_request_info_s::processedsnmp_oid_compare().

参照元 netsnmp_insert_tdata_row().

netsnmp_index* netsnmp_table_index_find_next_row ( netsnmp_container c,
netsnmp_table_request_info tblreq 
)

deprecated, backwards compatability only

expected impact to remove: none

replacement: none

table_container.c721 行で定義されています。

参照先 NULL.


net-snmpに対してSat Sep 5 13:14:30 2009に生成されました。  doxygen 1.4.7