1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374 |
- #ifdef DEBUG
- /*
- * plugin_dump.c
- */
- #include "private.h"
- #include "lub/dump.h"
- #include "lub/list.h"
- #include "clish/plugin.h"
- /*--------------------------------------------------------- */
- void clish_sym_dump(const clish_sym_t *this)
- {
- char *type = NULL;
- lub_dump_printf("sym(%p)\n", this);
- lub_dump_indent();
- lub_dump_printf("name : %s\n", LUB_DUMP_STR(this->name));
- lub_dump_printf("func : %p\n", LUB_DUMP_STR(this->func));
- switch (this->type) {
- case CLISH_SYM_TYPE_NONE:
- type = "none";
- break;
- case CLISH_SYM_TYPE_ACTION:
- type = "action";
- break;
- case CLISH_SYM_TYPE_ACCESS:
- type = "access";
- break;
- case CLISH_SYM_TYPE_CONFIG:
- type = "config";
- break;
- case CLISH_SYM_TYPE_LOG:
- type = "log";
- break;
- default:
- type = "unknown";
- break;
- }
- lub_dump_printf("type : %s\n", type);
- lub_dump_printf("permanent : %s\n", LUB_DUMP_BOOL(this->permanent));
- lub_dump_printf("plugin : %p\n", this->plugin);
- lub_dump_undent();
- }
- /*--------------------------------------------------------- */
- void clish_plugin_dump(const clish_plugin_t *this)
- {
- lub_list_node_t *iter;
- clish_sym_t *sym;
- lub_dump_printf("plugin(%p)\n", this);
- lub_dump_indent();
- lub_dump_printf("name : %s\n", LUB_DUMP_STR(this->name));
- lub_dump_printf("alias : %s\n", LUB_DUMP_STR(this->alias));
- lub_dump_printf("conf : %s\n", LUB_DUMP_STR(this->conf));
- lub_dump_printf("dlhan : %p\n", this->dlhan);
- lub_dump_printf("init : %p\n", this->init);
- lub_dump_printf("fini : %p\n", this->fini);
- lub_dump_indent();
- /* Iterate child elements */
- for(iter = lub_list__get_head(this->syms);
- iter; iter = lub_list_node__get_next(iter)) {
- sym = (clish_sym_t *)lub_list_node__get_data(iter);
- clish_sym_dump(sym);
- }
- lub_dump_undent();
- lub_dump_undent();
- }
- /*--------------------------------------------------------- */
- #endif /* DEBUG */
|