00001
00002
00003
00004 #ifndef _TABLE_TDATA_HANDLER_H_
00005 #define _TABLE_TDATA_HANDLER_H_
00006
00007 #ifdef __cplusplus
00008 extern "C" {
00009 #endif
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019 #define TABLE_TDATA_NAME "table_tdata"
00020 #define TABLE_TDATA_ROW "table_tdata"
00021 #define TABLE_TDATA_TABLE "table_tdata_table"
00022
00023 #define TDATA_FLAG_NO_STORE_INDEXES 0x01
00024
00025
00026
00027
00028
00029
00030
00031
00032
00033 typedef struct netsnmp_tdata_row_s {
00034 netsnmp_index oid_index;
00035 netsnmp_variable_list *indexes;
00036 void *data;
00037 } netsnmp_tdata_row;
00038
00039
00040
00041
00042
00043
00044
00045 typedef struct netsnmp_tdata_s {
00046 netsnmp_variable_list *indexes_template;
00047 char *name;
00048 int flags;
00049 netsnmp_container *container;
00050 } netsnmp_tdata;
00051
00052
00053 typedef struct netsnmp_tdata_row_s netsnmp_table_data2row;
00054 typedef struct netsnmp_tdata_s netsnmp_table_data2;
00055
00056
00057
00058
00059
00060
00061 netsnmp_tdata *netsnmp_tdata_create_table(const char *name, long flags);
00062 void netsnmp_tdata_delete_table(netsnmp_tdata *table);
00063 netsnmp_tdata_row *netsnmp_tdata_create_row(void);
00064 netsnmp_tdata_row *netsnmp_tdata_clone_row( netsnmp_tdata_row *row);
00065 int netsnmp_tdata_copy_row( netsnmp_tdata_row *dst_row,
00066 netsnmp_tdata_row *src_row);
00067 void *netsnmp_tdata_delete_row( netsnmp_tdata_row *row);
00068
00069 int netsnmp_tdata_add_row( netsnmp_tdata *table,
00070 netsnmp_tdata_row *row);
00071 void netsnmp_tdata_replace_row( netsnmp_tdata *table,
00072 netsnmp_tdata_row *origrow,
00073 netsnmp_tdata_row *newrow);
00074 netsnmp_tdata_row *netsnmp_tdata_remove_row(netsnmp_tdata *table,
00075 netsnmp_tdata_row *row);
00076 void *netsnmp_tdata_remove_and_delete_row(netsnmp_tdata *table,
00077 netsnmp_tdata_row *row);
00078
00079
00080
00081
00082
00083
00084 netsnmp_mib_handler *netsnmp_get_tdata_handler(netsnmp_tdata *table);
00085
00086 int netsnmp_tdata_register( netsnmp_handler_registration *reginfo,
00087 netsnmp_tdata *table,
00088 netsnmp_table_registration_info *table_info);
00089 int netsnmp_tdata_unregister(netsnmp_handler_registration *reginfo);
00090
00091 netsnmp_tdata *netsnmp_tdata_extract_table( netsnmp_request_info *);
00092 netsnmp_container *netsnmp_tdata_extract_container(netsnmp_request_info *);
00093 netsnmp_tdata_row *netsnmp_tdata_extract_row( netsnmp_request_info *);
00094 void *netsnmp_tdata_extract_entry( netsnmp_request_info *);
00095
00096 void netsnmp_insert_tdata_row(netsnmp_request_info *, netsnmp_tdata_row *);
00097
00098
00099
00100
00101
00102
00103 void * netsnmp_tdata_row_entry( netsnmp_tdata_row *row );
00104 netsnmp_tdata_row *netsnmp_tdata_row_first(netsnmp_tdata *table);
00105 netsnmp_tdata_row *netsnmp_tdata_row_get( netsnmp_tdata *table,
00106 netsnmp_tdata_row *row);
00107 netsnmp_tdata_row *netsnmp_tdata_row_next( netsnmp_tdata *table,
00108 netsnmp_tdata_row *row);
00109
00110 netsnmp_tdata_row *netsnmp_tdata_row_get_byidx(netsnmp_tdata *table,
00111 netsnmp_variable_list *indexes);
00112 netsnmp_tdata_row *netsnmp_tdata_row_get_byoid(netsnmp_tdata *table,
00113 oid *searchfor,
00114 size_t searchfor_len);
00115 netsnmp_tdata_row *netsnmp_tdata_row_next_byidx(netsnmp_tdata *table,
00116 netsnmp_variable_list *indexes);
00117 netsnmp_tdata_row *netsnmp_tdata_row_next_byoid(netsnmp_tdata *table,
00118 oid *searchfor,
00119 size_t searchfor_len);
00120
00121 int netsnmp_tdata_row_count(netsnmp_tdata *table);
00122
00123
00124
00125
00126
00127
00128 #define netsnmp_tdata_add_index(thetable, type) snmp_varlist_add_variable(&thetable->indexes_template, NULL, 0, type, NULL, 0)
00129 #define netsnmp_tdata_row_add_index(row, type, value, value_len) snmp_varlist_add_variable(&row->indexes, NULL, 0, type, (const u_char *) value, value_len)
00130
00131 int netsnmp_tdata_compare_idx( netsnmp_tdata_row *row,
00132 netsnmp_variable_list *indexes);
00133 int netsnmp_tdata_compare_oid( netsnmp_tdata_row *row,
00134 oid *compareto, size_t compareto_len);
00135 int netsnmp_tdata_compare_subtree_idx(netsnmp_tdata_row *row,
00136 netsnmp_variable_list *indexes);
00137 int netsnmp_tdata_compare_subtree_oid(netsnmp_tdata_row *row,
00138 oid *compareto, size_t compareto_len);
00139
00140
00141 #ifdef __cplusplus
00142 }
00143 #endif
00144
00145 #endif