X-Git-Url: http://www.project-moonshot.org/gitweb/?p=trust_router.git;a=blobdiff_plain;f=trp%2Ftrp_rtable_encoders.c;fp=trp%2Ftrp_rtable_encoders.c;h=ca63d6b969fc6cc50e0d594a1b5d7cddec57207b;hp=0000000000000000000000000000000000000000;hb=6f65c9cce86719147d0b4dcc9823b25443c2d185;hpb=eaa1a8ceed54fbfadc2638cf383aaa12ab446a57 diff --git a/trp/trp_rtable_encoders.c b/trp/trp_rtable_encoders.c new file mode 100644 index 0000000..ca63d6b --- /dev/null +++ b/trp/trp_rtable_encoders.c @@ -0,0 +1,165 @@ +/* + * Copyright (c) 2016-2018, JANET(UK) + * All rights reserved. + * + * Redistribution and use in source and binary forms, with or without + * modification, are permitted provided that the following conditions + * are met: + * + * 1. Redistributions of source code must retain the above copyright + * notice, this list of conditions and the following disclaimer. + * + * 2. Redistributions in binary form must reproduce the above copyright + * notice, this list of conditions and the following disclaimer in the + * documentation and/or other materials provided with the distribution. + * + * 3. Neither the name of JANET(UK) nor the names of its contributors + * may be used to endorse or promote products derived from this software + * without specific prior written permission. + * + * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS + * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT + * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS + * FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE + * COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, + * INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES + * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR + * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) + * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, + * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) + * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED + * OF THE POSSIBILITY OF SUCH DAMAGE. + * + */ + +#include + +#include +#include + +#include +#include +#include +#include +#include + + +static int sort_tr_names_cmp(const void *a, const void *b) +{ + TR_NAME **n1=(TR_NAME **)a; + TR_NAME **n2=(TR_NAME **)b; + return tr_name_cmp(*n1, *n2); +} + +static void sort_tr_names(TR_NAME **names, size_t n_names) +{ + qsort(names, n_names, sizeof(TR_NAME *), sort_tr_names_cmp); +} + +char *trp_rtable_to_str(TALLOC_CTX *mem_ctx, TRP_RTABLE *rtbl, const char *sep, const char *lineterm) +{ + TALLOC_CTX *tmp_ctx=talloc_new(NULL); + TR_NAME **comms=NULL; + size_t n_comms=0; + TR_NAME **realms=NULL; + size_t n_realms=0; + TRP_ROUTE **entries=NULL; + size_t n_entries=0; + char **tbl_strings=NULL; + size_t ii_tbl=0; /* counts tbl_strings */ + size_t tbl_size=0; + size_t len=0; + size_t ii=0, jj=0, kk=0; + char *p=NULL; + char *result=NULL; + + if (lineterm==NULL) + lineterm="\n"; + + tbl_size=trp_rtable_size(rtbl); + if (tbl_size==0) { + result=talloc_strdup(mem_ctx, lineterm); + goto cleanup; + } + + tbl_strings=talloc_array(tmp_ctx, char *, tbl_size); + if (tbl_strings==NULL) { + result=talloc_strdup(mem_ctx, "error"); + goto cleanup; + } + + comms=trp_rtable_get_comms(rtbl, &n_comms); + talloc_steal(tmp_ctx, comms); + sort_tr_names(comms, n_comms); + ii_tbl=0; + len=0; + for (ii=0; ii 0) { + route_json = trp_route_to_json(routes[--n_routes]); + if (route_json == NULL) + goto cleanup; + json_array_append_new(rtable_json, route_json); + } + + /* Success - set the return value and increment the reference count */ + retval = rtable_json; + json_incref(retval); + +cleanup: + if (rtable_json) + json_decref(rtable_json); + talloc_free(tmp_ctx); + return retval; +}