#include <string.h>
#include <Integra/integra_path.h>
#include "memory.h"
#include "debug.h"
Functions | |
ntg_path * | ntg_path_from_string (const char *path_string) |
create an ntg_path from a '.' delimited string | |
char * | ntg_path_to_string (const ntg_path *path) |
create a '.' delimited string from a '.' delimited path | |
char * | ntg_path_pop_element (const ntg_path *path, ntg_path **new_path) |
ntg_path * | ntg_path_append_element (ntg_path *path, const char *element) |
ntg_path * | ntg_path_reverse_elements (ntg_path *path) |
in place path reversal | |
ntg_path * | ntg_path_join (ntg_path *start, ntg_path *end) |
ntg_error_code | ntg_path_validate (const ntg_path *path) |
ntg_path * | ntg_path_new (void) |
ntg_error_code | ntg_path_free (ntg_path *path) |
References ntg_path_::elems, ntg_path_::n_elems, ntg_malloc(), and ntg_realloc().
Referenced by ntg_instance_get_path_(), and ntg_path_from_string().
ntg_error_code ntg_path_free | ( | ntg_path * | path | ) |
References ntg_path_::elems, ntg_path_::n_elems, ntg_free(), and NTG_NO_ERROR.
ntg_path* ntg_path_from_string | ( | const char * | path_string | ) |
create an ntg_path from a '.' delimited string
References ntg_path_::elems, ntg_path_::n_elems, ntg_malloc(), and ntg_path_append_element().
Referenced by ntg_server_delete_connection(), and ntg_server_update_connection().
References ntg_path_::elems, ntg_path_::n_elems, and ntg_malloc().
Referenced by ntg_server_update_connection().
ntg_path* ntg_path_new | ( | void | ) |
References ntg_path_::elems, ntg_path_::n_elems, and ntg_malloc().
Referenced by ntg_instance_get_path(), ntg_path_pop_element(), and ntg_server_get_nodelist().
References ntg_path_::elems, ntg_path_::n_elems, ntg_malloc(), and ntg_path_new().
Referenced by ntg_get(), ntg_server_delete_connection(), ntg_server_update_connection(), and ntg_set().
in place path reversal
References ntg_path_::elems, and ntg_path_::n_elems.
Referenced by ntg_instance_get_path().
char* ntg_path_to_string | ( | const ntg_path * | path | ) |
create a '.' delimited string from a '.' delimited path
References ntg_path_::elems, ntg_path_::n_elems, ntg_malloc(), NTG_NO_ERROR, ntg_path_validate(), and ntg_realloc().
ntg_error_code ntg_path_validate | ( | const ntg_path * | path | ) |
References ntg_path_::elems, ntg_path_::n_elems, NTG_NO_ERROR, NTG_PATH_ERROR, and ntg_print_error().
Referenced by ntg_get(), ntg_path_to_string(), and ntg_set().