akmhoque | 8a5babe | 2012-08-16 17:39:33 -0500 | [diff] [blame] | 1 | #include<stdio.h> |
| 2 | #include<string.h> |
| 3 | #include<stdlib.h> |
| 4 | #include <unistd.h> |
| 5 | #include <getopt.h> |
| 6 | #include <sys/time.h> |
| 7 | #include <assert.h> |
| 8 | #ifdef HAVE_CONFIG_H |
| 9 | #include <config.h> |
| 10 | #endif |
| 11 | |
| 12 | |
| 13 | #include <ccn/ccn.h> |
| 14 | #include <ccn/uri.h> |
| 15 | #include <ccn/keystore.h> |
| 16 | #include <ccn/signing.h> |
| 17 | #include <ccn/schedule.h> |
| 18 | #include <ccn/hashtb.h> |
| 19 | |
| 20 | #include "nlsr.h" |
| 21 | #include "nlsr_ndn.h" |
| 22 | #include "utility.h" |
| 23 | #include "nlsr_adl.h" |
| 24 | |
| 25 | void |
| 26 | add_adjacent_to_adl(struct ndn_neighbor *nbr) |
| 27 | { |
| 28 | printf("\nadd_adjacent_to_adl called\n"); |
akmhoque | a681769 | 2012-08-21 13:50:01 -0400 | [diff] [blame] | 29 | printf("Neighbor: %s Length: %d Face: %d Status: %d\n",ccn_charbuf_as_string(nbr->neighbor),(int)nbr->neighbor->length,nbr->face, nbr->status); |
akmhoque | 8a5babe | 2012-08-16 17:39:33 -0500 | [diff] [blame] | 30 | |
| 31 | struct ndn_neighbor *hnbr=(struct ndn_neighbor *)malloc(sizeof(struct ndn_neighbor*)); |
| 32 | |
| 33 | struct hashtb_enumerator ee; |
| 34 | struct hashtb_enumerator *e = ⅇ |
| 35 | int res; |
| 36 | |
| 37 | hashtb_start(nlsr->adl, e); |
akmhoque | a681769 | 2012-08-21 13:50:01 -0400 | [diff] [blame] | 38 | res = hashtb_seek(e, nbr->neighbor->buf , nbr->neighbor->length, 0); |
akmhoque | 2852a22 | 2012-08-21 12:09:00 -0400 | [diff] [blame] | 39 | |
akmhoque | e7c4b6d | 2012-08-21 12:30:25 -0400 | [diff] [blame] | 40 | if(res == HT_NEW_ENTRY ) |
| 41 | { |
akmhoque | 8a5babe | 2012-08-16 17:39:33 -0500 | [diff] [blame] | 42 | |
akmhoque | e7c4b6d | 2012-08-21 12:30:25 -0400 | [diff] [blame] | 43 | hnbr = e->data; |
akmhoque | a681769 | 2012-08-21 13:50:01 -0400 | [diff] [blame] | 44 | hnbr->neighbor=ccn_charbuf_create(); |
akmhoque | a681769 | 2012-08-21 13:50:01 -0400 | [diff] [blame] | 45 | ccn_charbuf_append_string(hnbr->neighbor,ccn_charbuf_as_string(nbr->neighbor)); |
akmhoque | 8a5babe | 2012-08-16 17:39:33 -0500 | [diff] [blame] | 46 | |
akmhoque | e7c4b6d | 2012-08-21 12:30:25 -0400 | [diff] [blame] | 47 | hnbr->face=nbr->face; |
| 48 | hnbr->status=nbr->status; |
akmhoque | f6432c2 | 2012-08-21 13:18:05 -0400 | [diff] [blame] | 49 | hnbr->last_lsdb_version=0; |
akmhoque | d79438d | 2012-08-27 13:31:42 -0500 | [diff] [blame] | 50 | hnbr->info_interest_timed_out=0; |
akmhoque | 8a5babe | 2012-08-16 17:39:33 -0500 | [diff] [blame] | 51 | |
akmhoque | e7c4b6d | 2012-08-21 12:30:25 -0400 | [diff] [blame] | 52 | struct hashtb_param param_luq = {0}; |
| 53 | hnbr->lsa_update_queue=hashtb_create(200, ¶m_luq); |
| 54 | } |
akmhoque | 8a5babe | 2012-08-16 17:39:33 -0500 | [diff] [blame] | 55 | |
| 56 | hashtb_end(e); |
| 57 | |
| 58 | printf("\n"); |
| 59 | |
| 60 | |
| 61 | } |
| 62 | |
| 63 | void |
| 64 | print_adjacent_from_adl(void) |
| 65 | { |
| 66 | printf("print_adjacent_from_adl called \n"); |
| 67 | int i, adl_element; |
| 68 | struct ndn_neighbor *nbr; |
| 69 | |
| 70 | struct hashtb_enumerator ee; |
| 71 | struct hashtb_enumerator *e = ⅇ |
| 72 | |
| 73 | hashtb_start(nlsr->adl, e); |
| 74 | adl_element=hashtb_n(nlsr->adl); |
| 75 | |
| 76 | for(i=0;i<adl_element;i++) |
| 77 | { |
| 78 | nbr=e->data; |
akmhoque | d79438d | 2012-08-27 13:31:42 -0500 | [diff] [blame] | 79 | printf("Neighbor: %s Length: %d Face: %d Status: %d LSDB Version: %ld Interest Timed Out: %d\n",ccn_charbuf_as_string(nbr->neighbor),(int)nbr->neighbor->length,nbr->face, nbr->status, nbr->last_lsdb_version,nbr->info_interest_timed_out); |
akmhoque | 8a5babe | 2012-08-16 17:39:33 -0500 | [diff] [blame] | 80 | hashtb_next(e); |
| 81 | } |
| 82 | |
| 83 | hashtb_end(e); |
| 84 | |
| 85 | printf("\n"); |
| 86 | } |
| 87 | |
| 88 | void |
| 89 | update_adjacent_status_to_adl(struct ccn_charbuf *nbr, int status) |
| 90 | { |
| 91 | printf("update_adjacent_status_to_adl called \n"); |
| 92 | |
| 93 | int res; |
| 94 | struct ndn_neighbor *nnbr; |
| 95 | |
| 96 | struct hashtb_enumerator ee; |
| 97 | struct hashtb_enumerator *e = ⅇ |
| 98 | |
| 99 | hashtb_start(nlsr->adl, e); |
akmhoque | 50206fc | 2012-08-21 11:49:12 -0400 | [diff] [blame] | 100 | res = hashtb_seek(e, nbr->buf, nbr->length, 0); |
akmhoque | 50206fc | 2012-08-21 11:49:12 -0400 | [diff] [blame] | 101 | |
akmhoque | 918ff9a | 2012-08-21 11:34:49 -0400 | [diff] [blame] | 102 | |
akmhoque | e7c4b6d | 2012-08-21 12:30:25 -0400 | [diff] [blame] | 103 | if (res == HT_OLD_ENTRY) |
| 104 | { |
| 105 | nnbr=e->data; |
akmhoque | 42098b1 | 2012-08-27 22:54:23 -0500 | [diff] [blame^] | 106 | if ( nnbr->status!=status ) |
| 107 | { |
| 108 | nnbr->status=status; |
| 109 | nlsr->adj_build_flag++; |
| 110 | } |
akmhoque | e7c4b6d | 2012-08-21 12:30:25 -0400 | [diff] [blame] | 111 | } |
akmhoque | b903ded | 2012-08-21 12:56:28 -0400 | [diff] [blame] | 112 | else if(res == HT_NEW_ENTRY) |
| 113 | { |
| 114 | hashtb_delete(e); |
| 115 | } |
akmhoque | 8a5babe | 2012-08-16 17:39:33 -0500 | [diff] [blame] | 116 | |
| 117 | hashtb_end(e); |
| 118 | } |
| 119 | |
| 120 | |
| 121 | void |
akmhoque | f6432c2 | 2012-08-21 13:18:05 -0400 | [diff] [blame] | 122 | update_adjacent_lsdb_version_to_adl(struct ccn_charbuf *nbr, long int version) |
akmhoque | 8a5babe | 2012-08-16 17:39:33 -0500 | [diff] [blame] | 123 | { |
| 124 | printf("update_adjacent_status_to_adl called \n"); |
| 125 | |
| 126 | int res; |
| 127 | struct ndn_neighbor *nnbr; |
| 128 | |
| 129 | struct hashtb_enumerator ee; |
| 130 | struct hashtb_enumerator *e = ⅇ |
| 131 | |
| 132 | hashtb_start(nlsr->adl, e); |
akmhoque | 2852a22 | 2012-08-21 12:09:00 -0400 | [diff] [blame] | 133 | res = hashtb_seek(e, nbr->buf, nbr->length, 0); |
akmhoque | 8a5babe | 2012-08-16 17:39:33 -0500 | [diff] [blame] | 134 | |
akmhoque | e7c4b6d | 2012-08-21 12:30:25 -0400 | [diff] [blame] | 135 | if( res == HT_OLD_ENTRY ) |
| 136 | { |
| 137 | nnbr=e->data; |
akmhoque | f6432c2 | 2012-08-21 13:18:05 -0400 | [diff] [blame] | 138 | nnbr->last_lsdb_version = version; |
| 139 | //memcpy(nnbr->last_lsdb_version,version,strlen(version)+1); |
akmhoque | e7c4b6d | 2012-08-21 12:30:25 -0400 | [diff] [blame] | 140 | } |
akmhoque | b903ded | 2012-08-21 12:56:28 -0400 | [diff] [blame] | 141 | else if(res == HT_NEW_ENTRY) |
| 142 | { |
| 143 | hashtb_delete(e); |
| 144 | } |
| 145 | |
akmhoque | 8a5babe | 2012-08-16 17:39:33 -0500 | [diff] [blame] | 146 | hashtb_end(e); |
| 147 | } |
akmhoque | d79438d | 2012-08-27 13:31:42 -0500 | [diff] [blame] | 148 | |
| 149 | void |
| 150 | update_adjacent_timed_out_to_adl(struct ccn_charbuf *nbr, int increment) |
| 151 | { |
| 152 | printf("update_adjacent_timed_out_to_adl called \n"); |
| 153 | |
| 154 | int res; |
| 155 | struct ndn_neighbor *nnbr; |
| 156 | |
| 157 | struct hashtb_enumerator ee; |
| 158 | struct hashtb_enumerator *e = ⅇ |
| 159 | |
| 160 | hashtb_start(nlsr->adl, e); |
| 161 | res = hashtb_seek(e, nbr->buf, nbr->length, 0); |
| 162 | |
| 163 | if( res == HT_OLD_ENTRY ) |
| 164 | { |
| 165 | nnbr=e->data; |
| 166 | nnbr->info_interest_timed_out += increment; |
| 167 | } |
| 168 | else if(res == HT_NEW_ENTRY) |
| 169 | { |
| 170 | hashtb_delete(e); |
| 171 | } |
| 172 | |
| 173 | hashtb_end(e); |
| 174 | } |
| 175 | |
| 176 | void |
| 177 | update_adjacent_timed_out_zero_to_adl(struct ccn_charbuf *nbr) |
| 178 | { |
| 179 | |
| 180 | printf("update_adjacent_timed_out_zero_to_adl called \n"); |
| 181 | int time_out_number=get_timed_out_number(nbr); |
| 182 | update_adjacent_timed_out_to_adl(nbr,-time_out_number); |
| 183 | |
| 184 | } |
| 185 | |
| 186 | |
| 187 | int |
| 188 | get_timed_out_number(struct ccn_charbuf *nbr) |
| 189 | { |
| 190 | |
| 191 | printf("get_timed_out_number called \n"); |
| 192 | |
| 193 | int res,ret=-1; |
| 194 | struct ndn_neighbor *nnbr; |
| 195 | |
| 196 | struct hashtb_enumerator ee; |
| 197 | struct hashtb_enumerator *e = ⅇ |
| 198 | |
| 199 | hashtb_start(nlsr->adl, e); |
| 200 | res = hashtb_seek(e, nbr->buf, nbr->length, 0); |
| 201 | |
| 202 | if( res == HT_OLD_ENTRY ) |
| 203 | { |
| 204 | nnbr=e->data; |
| 205 | ret=nnbr->info_interest_timed_out; |
| 206 | } |
| 207 | else if(res == HT_NEW_ENTRY) |
| 208 | { |
| 209 | hashtb_delete(e); |
| 210 | } |
| 211 | |
| 212 | hashtb_end(e); |
| 213 | |
| 214 | return ret; |
| 215 | |
| 216 | } |