/* * $Id: tree.h 4518 2008-07-28 15:39:28Z henningw $ * * Copyright (C) 2006 Voice Sistem SRL * * This file is part of Kamailio, a free SIP server. * * Kamailio is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * * Kamailio is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. * * * History: * --------- * 2006-09-08 first version (bogdan) * 2010-08-18 use mi types from ../../mi/mi_types.h (andrei) */ /*! * \file * \brief MI :: Tree * \ingroup mi */ #ifndef _MI_TREE_H #define _MI_TREE_H #include #include "../../str.h" #include "../../mi/mi_types.h" struct mi_node; struct mi_handler; #include "attr.h" #define MI_DUP_NAME (1<<0) #define MI_DUP_VALUE (1<<1) #define MI_OK_S "OK" #define MI_OK_LEN (sizeof(MI_OK_S)-1) #define MI_INTERNAL_ERR_S "Server Internal Error" #define MI_INTERNAL_ERR_LEN (sizeof(MI_INTERNAL_ERR_S)-1) #define MI_MISSING_PARM_S "Too few or too many arguments" #define MI_MISSING_PARM_LEN (sizeof(MI_MISSING_PARM_S)-1) #define MI_BAD_PARM_S "Bad parameter" #define MI_BAD_PARM_LEN (sizeof(MI_BAD_PARM_S)-1) #define MI_SSTR(_s) _s,(sizeof(_s)-1) #define MI_OK MI_OK_S #define MI_INTERNAL_ERR MI_INTERNAL_ERR_S #define MI_MISSING_PARM MI_MISSING_PARM_S #define MI_BAD_PARM MI_BAD_PARM_S struct mi_root *init_mi_tree(unsigned int code, char *reason, int reason_len); void free_mi_tree(struct mi_root *parent); struct mi_node *add_mi_node_sibling(struct mi_node *brother, int flags, char *name, int name_len, char *value, int value_len); struct mi_node *addf_mi_node_sibling(struct mi_node *brother, int flags, char *name, int name_len, char *fmt_val, ...); struct mi_node *add_mi_node_child(struct mi_node *parent, int flags, char *name, int name_len, char *value, int value_len); struct mi_node *addf_mi_node_child(struct mi_node *parent, int flags, char *name, int name_len, char *fmt_val, ...); struct mi_root* clone_mi_tree(struct mi_root *org, int shm); void free_shm_mi_tree(struct mi_root *parent); #endif