vector configvec;
PREDECL_LIST(config_master);
+PREDECL_HASH(config_master_hash);
struct config {
/* Configuration node name. */
/* Node entry for the typed Red-black tree */
struct config_master_item rbt_item;
+ struct config_master_hash_item hash_item;
};
struct list *config_top;
XFREE(MTYPE_VTYSH_CONFIG, config);
}
+static int config_cmp(const struct config *c1, const struct config *c2)
+{
+ return strcmp(c1->name, c2->name);
+}
+
+static uint32_t config_hash(const struct config *c)
+{
+ return string_hash_make(c->name);
+}
+
DECLARE_LIST(config_master, struct config, rbt_item)
+DECLARE_HASH(config_master_hash, struct config, hash_item, config_cmp,
+ config_hash)
+
+/*
+ * The config_master_head is a list for order of receipt
+ * The hash is for quick lookup under this NODE
+ */
+struct configuration {
+ struct config_master_head master;
+ struct config_master_hash_head hash_master;
+};
static struct config *config_get(int index, const char *line)
{
struct config *config, *config_loop;
- struct config_master_head *master;
+ struct configuration *configuration;
+ struct config lookup;
config = config_loop = NULL;
- master = vector_lookup_ensure(configvec, index);
+ configuration = vector_lookup_ensure(configvec, index);
- if (!master) {
- master = XMALLOC(MTYPE_VTYSH_CONFIG, sizeof(struct config_master_head));
- config_master_init(master);
- vector_set_index(configvec, index, master);
+ if (!configuration) {
+ configuration = XMALLOC(MTYPE_VTYSH_CONFIG,
+ sizeof(struct configuration));
+ config_master_init(&configuration->master);
+ config_master_hash_init(&configuration->hash_master);
+ vector_set_index(configvec, index, configuration);
}
- frr_each (config_master, master, config_loop) {
- if (strcmp(config_loop->name, line) == 0) {
- config = config_loop;
- break;
- }
- }
+ lookup.name = (char *)line;
+ config = config_master_hash_find(&configuration->hash_master, &lookup);
if (!config) {
config = config_new();
config->line->cmp = (int (*)(void *, void *))line_cmp;
config->name = XSTRDUP(MTYPE_VTYSH_CONFIG_LINE, line);
config->index = index;
- config_master_add_tail(master, config);
+ config_master_add_tail(&configuration->master, config);
+ config_master_hash_add(&configuration->hash_master, config);
}
return config;
}
struct listnode *node, *nnode;
struct listnode *mnode, *mnnode;
struct config *config;
- struct config_master_head *master;
+ struct configuration *configuration;
char *line;
unsigned int i;
vty_out(vty, "!\n");
for (i = 0; i < vector_active(configvec); i++)
- if ((master = vector_slot(configvec, i)) != NULL) {
- while ((config = config_master_pop(master))) {
+ if ((configuration = vector_slot(configvec, i)) != NULL) {
+ while ((config = config_master_pop(
+ &configuration->master))) {
+ config_master_hash_del(
+ &configuration->hash_master, config);
/* Don't print empty sections for interface.
* Route maps on the
* other hand could have a legitimate empty
}
for (i = 0; i < vector_active(configvec); i++)
- if ((master = vector_slot(configvec, i)) != NULL) {
- config_master_fini(master);
- XFREE(MTYPE_VTYSH_CONFIG, master);
+ if ((configuration = vector_slot(configvec, i)) != NULL) {
+ config_master_fini(&configuration->master);
+ config_master_hash_fini(&configuration->hash_master);
+ XFREE(MTYPE_VTYSH_CONFIG, configuration);
vector_slot(configvec, i) = NULL;
}
list_delete_all_node(config_top);