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(); |
| 45 | //res=ccn_name_from_uri(hnbr->neighbor,ccn_charbuf_as_string(nbr->neighbor)); |
| 46 | ccn_charbuf_append_string(hnbr->neighbor,ccn_charbuf_as_string(nbr->neighbor)); |
| 47 | |
| 48 | //hnbr->neighbor=(struct name_prefix *)malloc(sizeof(struct name_prefix *)); |
| 49 | //hnbr->neighbor->name=(char *)malloc(nbr->neighbor->length); |
| 50 | //memcpy(hnbr->neighbor->name,nbr->neighbor->name,nbr->neighbor->length); |
| 51 | //hnbr->neighbor->name[nbr->neighbor->length]='\0'; |
akmhoque | f6432c2 | 2012-08-21 13:18:05 -0400 | [diff] [blame] | 52 | //hnbr->last_lsdb_version=(char *)malloc(15); |
akmhoque | a681769 | 2012-08-21 13:50:01 -0400 | [diff] [blame^] | 53 | //hnbr->neighbor->length=nbr->neighbor->length; |
akmhoque | 8a5babe | 2012-08-16 17:39:33 -0500 | [diff] [blame] | 54 | |
akmhoque | e7c4b6d | 2012-08-21 12:30:25 -0400 | [diff] [blame] | 55 | hnbr->face=nbr->face; |
| 56 | hnbr->status=nbr->status; |
akmhoque | f6432c2 | 2012-08-21 13:18:05 -0400 | [diff] [blame] | 57 | //memcpy(hnbr->last_lsdb_version,"00000000000000",14); |
| 58 | //memcpy(hnbr->last_lsdb_version+strlen(hnbr->last_lsdb_version),"\0",1); |
| 59 | hnbr->last_lsdb_version=0; |
akmhoque | 8a5babe | 2012-08-16 17:39:33 -0500 | [diff] [blame] | 60 | |
akmhoque | e7c4b6d | 2012-08-21 12:30:25 -0400 | [diff] [blame] | 61 | struct hashtb_param param_luq = {0}; |
| 62 | hnbr->lsa_update_queue=hashtb_create(200, ¶m_luq); |
| 63 | } |
akmhoque | 8a5babe | 2012-08-16 17:39:33 -0500 | [diff] [blame] | 64 | |
| 65 | hashtb_end(e); |
| 66 | |
| 67 | printf("\n"); |
| 68 | |
| 69 | |
| 70 | } |
| 71 | |
| 72 | void |
| 73 | print_adjacent_from_adl(void) |
| 74 | { |
| 75 | printf("print_adjacent_from_adl called \n"); |
| 76 | int i, adl_element; |
| 77 | struct ndn_neighbor *nbr; |
| 78 | |
| 79 | struct hashtb_enumerator ee; |
| 80 | struct hashtb_enumerator *e = ⅇ |
| 81 | |
| 82 | hashtb_start(nlsr->adl, e); |
| 83 | adl_element=hashtb_n(nlsr->adl); |
| 84 | |
| 85 | for(i=0;i<adl_element;i++) |
| 86 | { |
| 87 | nbr=e->data; |
akmhoque | a681769 | 2012-08-21 13:50:01 -0400 | [diff] [blame^] | 88 | printf("Neighbor: %s Length: %d Face: %d Status: %d LSDB Version: %ld \n",ccn_charbuf_as_string(nbr->neighbor),(int)nbr->neighbor->length,nbr->face, nbr->status, nbr->last_lsdb_version); |
akmhoque | 8a5babe | 2012-08-16 17:39:33 -0500 | [diff] [blame] | 89 | hashtb_next(e); |
| 90 | } |
| 91 | |
| 92 | hashtb_end(e); |
| 93 | |
| 94 | printf("\n"); |
| 95 | } |
| 96 | |
| 97 | void |
| 98 | update_adjacent_status_to_adl(struct ccn_charbuf *nbr, int status) |
| 99 | { |
| 100 | printf("update_adjacent_status_to_adl called \n"); |
| 101 | |
| 102 | int res; |
| 103 | struct ndn_neighbor *nnbr; |
| 104 | |
| 105 | struct hashtb_enumerator ee; |
| 106 | struct hashtb_enumerator *e = ⅇ |
| 107 | |
| 108 | hashtb_start(nlsr->adl, e); |
akmhoque | 50206fc | 2012-08-21 11:49:12 -0400 | [diff] [blame] | 109 | res = hashtb_seek(e, nbr->buf, nbr->length, 0); |
akmhoque | 50206fc | 2012-08-21 11:49:12 -0400 | [diff] [blame] | 110 | |
akmhoque | 918ff9a | 2012-08-21 11:34:49 -0400 | [diff] [blame] | 111 | |
akmhoque | e7c4b6d | 2012-08-21 12:30:25 -0400 | [diff] [blame] | 112 | if (res == HT_OLD_ENTRY) |
| 113 | { |
| 114 | nnbr=e->data; |
| 115 | nnbr->status=status; |
| 116 | } |
akmhoque | b903ded | 2012-08-21 12:56:28 -0400 | [diff] [blame] | 117 | else if(res == HT_NEW_ENTRY) |
| 118 | { |
| 119 | hashtb_delete(e); |
| 120 | } |
akmhoque | 8a5babe | 2012-08-16 17:39:33 -0500 | [diff] [blame] | 121 | |
| 122 | hashtb_end(e); |
| 123 | } |
| 124 | |
| 125 | |
| 126 | void |
akmhoque | f6432c2 | 2012-08-21 13:18:05 -0400 | [diff] [blame] | 127 | update_adjacent_lsdb_version_to_adl(struct ccn_charbuf *nbr, long int version) |
akmhoque | 8a5babe | 2012-08-16 17:39:33 -0500 | [diff] [blame] | 128 | { |
| 129 | printf("update_adjacent_status_to_adl called \n"); |
| 130 | |
| 131 | int res; |
| 132 | struct ndn_neighbor *nnbr; |
| 133 | |
| 134 | struct hashtb_enumerator ee; |
| 135 | struct hashtb_enumerator *e = ⅇ |
| 136 | |
| 137 | hashtb_start(nlsr->adl, e); |
akmhoque | 2852a22 | 2012-08-21 12:09:00 -0400 | [diff] [blame] | 138 | res = hashtb_seek(e, nbr->buf, nbr->length, 0); |
akmhoque | 8a5babe | 2012-08-16 17:39:33 -0500 | [diff] [blame] | 139 | |
akmhoque | e7c4b6d | 2012-08-21 12:30:25 -0400 | [diff] [blame] | 140 | if( res == HT_OLD_ENTRY ) |
| 141 | { |
| 142 | nnbr=e->data; |
akmhoque | f6432c2 | 2012-08-21 13:18:05 -0400 | [diff] [blame] | 143 | nnbr->last_lsdb_version = version; |
| 144 | //memcpy(nnbr->last_lsdb_version,version,strlen(version)+1); |
akmhoque | e7c4b6d | 2012-08-21 12:30:25 -0400 | [diff] [blame] | 145 | } |
akmhoque | b903ded | 2012-08-21 12:56:28 -0400 | [diff] [blame] | 146 | else if(res == HT_NEW_ENTRY) |
| 147 | { |
| 148 | hashtb_delete(e); |
| 149 | } |
| 150 | |
akmhoque | 8a5babe | 2012-08-16 17:39:33 -0500 | [diff] [blame] | 151 | hashtb_end(e); |
| 152 | } |