Add copyright statement missing from recently added files.
[trust_router.git] / common / tr_apc.c
1 /*
2  * Copyright (c) 2016, JANET(UK)
3  * All rights reserved.
4  *
5  * Redistribution and use in source and binary forms, with or without
6  * modification, are permitted provided that the following conditions
7  * are met:
8  *
9  * 1. Redistributions of source code must retain the above copyright
10  *    notice, this list of conditions and the following disclaimer.
11  *
12  * 2. Redistributions in binary form must reproduce the above copyright
13  *    notice, this list of conditions and the following disclaimer in the
14  *    documentation and/or other materials provided with the distribution.
15  *
16  * 3. Neither the name of JANET(UK) nor the names of its contributors
17  *    may be used to endorse or promote products derived from this software
18  *    without specific prior written permission.
19  *
20  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
21  * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
22  * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
23  * FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
24  * COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT,
25  * INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
26  * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
27  * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
28  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
29  * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
30  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
31  * OF THE POSSIBILITY OF SUCH DAMAGE.
32  *
33  */
34
35 #include <talloc.h>
36
37 #include <trust_router/tr_name.h>
38 #include <tr_apc.h>
39
40 static int tr_apc_destructor(void *obj)
41 {
42   TR_APC *apc=talloc_get_type_abort(obj, TR_APC);
43   if (apc->id!=NULL)
44     tr_free_name(apc->id);
45   return 0;
46 }
47
48 TR_APC *tr_apc_new(TALLOC_CTX *mem_ctx)
49 {
50   TR_APC *apc=talloc(mem_ctx, TR_APC);
51   if (apc!=NULL) {
52     apc->id=NULL;
53     apc->next=NULL;
54     talloc_set_destructor((void *)apc, tr_apc_destructor);
55   }
56   return apc;
57 }
58
59 void tr_apc_free(TR_APC *apc)
60 {
61   talloc_free(apc);
62 }
63
64 static TR_APC *tr_apc_tail(TR_APC *apc)
65 {
66   if (apc==NULL)
67     return NULL;
68
69   while (apc->next!=NULL)
70     apc=apc->next;
71   return apc;
72 }
73
74 TR_APC *tr_apc_add(TR_APC *head, TR_APC *new)
75 {
76   if (head==NULL)
77     head=new;
78   else {
79     tr_apc_tail(head)->next=new;
80     while (new!=NULL) {
81       talloc_steal(head, new);
82       new=new->next;
83     }
84   }
85   return head;
86 }
87
88 /* does not copy next pointer */
89 TR_APC *tr_apc_dup(TALLOC_CTX *mem_ctx, TR_APC *apc)
90 {
91   TR_APC *new=tr_apc_new(mem_ctx);
92   tr_apc_set_id(new, tr_apc_dup_id(apc));
93   return new;
94 }
95
96 void tr_apc_set_id(TR_APC *apc, TR_NAME *id)
97 {
98   if (apc->id)
99     tr_free_name(apc->id);
100   apc->id=id;
101 }
102
103 TR_NAME *tr_apc_get_id(TR_APC *apc)
104 {
105   return apc->id;
106 }
107
108 TR_NAME *tr_apc_dup_id(TR_APC *apc)
109 {
110   return tr_dup_name(apc->id);;
111 }
112
113
114 char *tr_apc_to_str(TALLOC_CTX *mem_ctx, TR_APC *apc)
115 {
116   return talloc_strndup(mem_ctx, apc->id->buf, apc->id->len);
117 }