12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182 |
- #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", this->name);
- lub_dump_printf("func : %p\n", 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_INIT:
- type = "init";
- break;
- case CLISH_SYM_TYPE_FINI:
- type = "fini";
- 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",
- this->permanent ? "true" : "false");
- 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", this->name);
- lub_dump_printf("alias : %s\n", this->alias);
- lub_dump_printf("conf : %s\n", this->conf);
- lub_dump_printf("file : %s\n", this->file);
- 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 */
|