akmhoque | 8fdd641 | 2012-12-04 15:05:33 -0600 | [diff] [blame] | 1 | #ifndef _NLSR_ROUTE_H_ |
| 2 | #define _NLSR_ROUTE_H_ |
| 3 | |
| 4 | #define EMPTY_PARENT -12345 |
| 5 | #define INF_DISTANCE 2147483647 |
| 6 | |
| 7 | #define NO_NEXT_HOP -12345 |
| 8 | #define NO_MAPPING_NUM -1 |
| 9 | |
| 10 | struct map_entry |
| 11 | { |
| 12 | char *router; |
| 13 | int mapping; |
| 14 | }; |
| 15 | |
| 16 | |
| 17 | struct routing_table_entry |
| 18 | { |
| 19 | char *dest_router; |
| 20 | //int next_hop_face; |
| 21 | struct hashtb *face_list; |
| 22 | }; |
| 23 | |
| 24 | struct face_list_entry |
| 25 | { |
| 26 | int next_hop_face; |
akmhoque | f06586e | 2013-02-05 12:09:38 -0600 | [diff] [blame] | 27 | double route_cost; |
akmhoque | 8fdd641 | 2012-12-04 15:05:33 -0600 | [diff] [blame] | 28 | }; |
| 29 | |
| 30 | int route_calculate(struct ccn_schedule *sched, void *clienth, struct ccn_scheduled_event *ev, int flags); |
| 31 | void make_map(void); |
| 32 | void add_map_entry(char *router); |
| 33 | void add_adj_data_to_map(char *orig_router, char *body, int no_link); |
| 34 | void print_map(void); |
| 35 | void assign_mapping_number(void); |
| 36 | void make_adj_matrix(int **adj_matrix,int map_element); |
| 37 | void init_adj_matrix(int **adj_matrix,int map_element); |
| 38 | void print_adj_matrix(int **adj_matrix, int map_element); |
| 39 | int get_mapping_no(char *router); |
| 40 | void calculate_path(int **adj_matrix, long int *parent,long int *dist, long int V, long int S); |
| 41 | void sort_queue_by_distance(long int *Q,long int *dist,long int start,long int element); |
| 42 | int is_not_explored(long int *Q, long int u,long int start, long int element); |
| 43 | void print_path(long int *parent, long int dest); |
| 44 | void print_all_path_from_source(long int *parent,long int source); |
| 45 | void add_rev_map_entry(long int mapping_number, char *router); |
| 46 | void print_rev_map(void); |
| 47 | char * get_router_from_rev_map(long int mapping_number); |
| 48 | int get_no_link_from_adj_matrix(int **adj_matrix,long int V, long int S); |
| 49 | void get_links_from_adj_matrix(int **adj_matrix, long int V ,long int *links, long int *link_costs,long int S); |
| 50 | void adjust_adj_matrix(int **adj_matrix, long int V, long int S, long int link,long int link_cost); |
| 51 | |
| 52 | /* Routing Table Relates function */ |
| 53 | |
| 54 | int get_next_hop(char *dest_router,int *faces, int *route_costs); |
| 55 | int get_number_of_next_hop(char *dest_router); |
| 56 | void add_next_hop_router(char *dest_router); |
| 57 | void add_next_hop_from_lsa_adj_body(char *body, int no_link); |
| 58 | void print_routing_table(void); |
| 59 | void do_old_routing_table_updates(void); |
| 60 | void clear_old_routing_table(void); |
| 61 | void update_routing_table_with_new_route(long int *parent,long int *dist, long int source); |
| 62 | |
| 63 | long int get_next_hop_from_calculation(long int *parent, long int dest,long int source); |
| 64 | void print_all_next_hop(long int *parent,long int source); |
| 65 | int does_face_exist_for_router(char *dest_router, int face_id); |
| 66 | |
akmhoque | f06586e | 2013-02-05 12:09:38 -0600 | [diff] [blame] | 67 | double get_hyperbolic_distance(long int source, long int dest); |
| 68 | void sort_hyperbolic_route(double *dist_dest,double *dist_nbr, long int *faces,long int start,long int element); |
| 69 | void update_routing_table_with_new_hyperbolic_route(long int dest_router_rev_map_index, long int face, double nbr_to_dest_dist); |
| 70 | |
akmhoque | 8fdd641 | 2012-12-04 15:05:33 -0600 | [diff] [blame] | 71 | #endif |