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"); |
| 29 | printf("Neighbor: %s Length: %d Face: %d Status: %d\n",nbr->neighbor->name,nbr->neighbor->length,nbr->face, nbr->status); |
| 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); |
| 38 | res = hashtb_seek(e, nbr->neighbor->name , nbr->neighbor->length, 0); |
| 39 | |
| 40 | hnbr = e->data; |
| 41 | |
| 42 | hnbr->neighbor=(struct name_prefix *)malloc(sizeof(struct name_prefix *)); |
| 43 | hnbr->neighbor->name=(char *)malloc(nbr->neighbor->length); |
| 44 | memcpy(hnbr->neighbor->name,nbr->neighbor->name,nbr->neighbor->length); |
akmhoque | 6dc9a24 | 2012-08-21 11:23:57 -0400 | [diff] [blame] | 45 | hnbr->last_lsdb_version=(char *)malloc(15); |
akmhoque | 8a5babe | 2012-08-16 17:39:33 -0500 | [diff] [blame] | 46 | |
| 47 | hnbr->neighbor->length=nbr->neighbor->length; |
| 48 | hnbr->face=nbr->face; |
| 49 | hnbr->status=nbr->status; |
akmhoque | 6dc9a24 | 2012-08-21 11:23:57 -0400 | [diff] [blame] | 50 | memcpy(hnbr->last_lsdb_version,"00000000000000",14); |
| 51 | memcpy(hnbr->last_lsdb_version+strlen(hnbr->last_lsdb_version),"\0",1); |
akmhoque | 8a5babe | 2012-08-16 17:39:33 -0500 | [diff] [blame] | 52 | |
| 53 | struct hashtb_param param_luq = {0}; |
| 54 | hnbr->lsa_update_queue=hashtb_create(200, ¶m_luq); |
| 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 | 6dc9a24 | 2012-08-21 11:23:57 -0400 | [diff] [blame] | 79 | printf("Neighbor: %s Length: %d Face: %d Status: %d LSDB Version: %s \n",nbr->neighbor->name,nbr->neighbor->length,nbr->face, nbr->status, nbr->last_lsdb_version); |
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; |
akmhoque | b9ae9d9 | 2012-08-21 11:45:45 -0400 | [diff] [blame] | 94 | char *name=ccn_charbuf_as_string(nbr); |
akmhoque | 8a5babe | 2012-08-16 17:39:33 -0500 | [diff] [blame] | 95 | struct ndn_neighbor *nnbr; |
| 96 | |
| 97 | struct hashtb_enumerator ee; |
| 98 | struct hashtb_enumerator *e = ⅇ |
| 99 | |
| 100 | hashtb_start(nlsr->adl, e); |
akmhoque | 50206fc | 2012-08-21 11:49:12 -0400 | [diff] [blame^] | 101 | res = hashtb_seek(e, nbr->buf, nbr->length, 0); |
akmhoque | 8a5babe | 2012-08-16 17:39:33 -0500 | [diff] [blame] | 102 | |
akmhoque | b9ae9d9 | 2012-08-21 11:45:45 -0400 | [diff] [blame] | 103 | //printf("Nbr: %s Length:%d\n",nbr->buf, (int)nbr->length); |
akmhoque | 50206fc | 2012-08-21 11:49:12 -0400 | [diff] [blame^] | 104 | |
akmhoque | 918ff9a | 2012-08-21 11:34:49 -0400 | [diff] [blame] | 105 | |
akmhoque | 50206fc | 2012-08-21 11:49:12 -0400 | [diff] [blame^] | 106 | //assert( res == HT_OLD_ENTRY); |
akmhoque | 8a5babe | 2012-08-16 17:39:33 -0500 | [diff] [blame] | 107 | |
| 108 | nnbr=e->data; |
| 109 | nnbr->status=status; |
| 110 | |
| 111 | hashtb_end(e); |
| 112 | } |
| 113 | |
| 114 | |
| 115 | void |
akmhoque | 6dc9a24 | 2012-08-21 11:23:57 -0400 | [diff] [blame] | 116 | update_adjacent_lsdb_version_to_adl(struct ccn_charbuf *nbr, char *version) |
akmhoque | 8a5babe | 2012-08-16 17:39:33 -0500 | [diff] [blame] | 117 | { |
| 118 | printf("update_adjacent_status_to_adl called \n"); |
| 119 | |
| 120 | int res; |
akmhoque | 71b552d | 2012-08-21 11:44:34 -0400 | [diff] [blame] | 121 | char *name=ccn_charbuf_as_string(nbr); |
akmhoque | 8a5babe | 2012-08-16 17:39:33 -0500 | [diff] [blame] | 122 | struct ndn_neighbor *nnbr; |
| 123 | |
| 124 | struct hashtb_enumerator ee; |
| 125 | struct hashtb_enumerator *e = ⅇ |
| 126 | |
| 127 | hashtb_start(nlsr->adl, e); |
akmhoque | 71b552d | 2012-08-21 11:44:34 -0400 | [diff] [blame] | 128 | res = hashtb_seek(e, name,strlen(name) , 0); |
akmhoque | 8a5babe | 2012-08-16 17:39:33 -0500 | [diff] [blame] | 129 | |
akmhoque | 50206fc | 2012-08-21 11:49:12 -0400 | [diff] [blame^] | 130 | //printf("Nbr: %s Length:%d\n",nbr->buf, (int)nbr->length); |
| 131 | |
| 132 | //assert( res == HT_OLD_ENTRY); |
akmhoque | 8a5babe | 2012-08-16 17:39:33 -0500 | [diff] [blame] | 133 | |
| 134 | nnbr=e->data; |
akmhoque | 6dc9a24 | 2012-08-21 11:23:57 -0400 | [diff] [blame] | 135 | memcpy(nnbr->last_lsdb_version,version,strlen(version)+1); |
| 136 | |
akmhoque | 8a5babe | 2012-08-16 17:39:33 -0500 | [diff] [blame] | 137 | hashtb_end(e); |
| 138 | } |