streamers / chunk_signaling.c @ e08d7c2f
History | View | Annotate | Download (4.29 KB)
1 |
/*
|
---|---|
2 |
* Copyright (c) 2009 Alessandro Russo
|
3 |
* Copyright (c) 2009 Csaba Kiraly
|
4 |
*
|
5 |
* This is free software; see gpl-3.0.txt
|
6 |
*
|
7 |
* Chunk Signaling API - Higher Abstraction
|
8 |
*
|
9 |
* The Chunk Signaling HA provides a set of primitives for chunks signaling negotiation with other peers, in order to collect information for the effective chunk exchange with other peers. <br>
|
10 |
* This is a part of the Data Exchange Protocol which provides high level abstraction for chunks' negotiations, like requesting and proposing chunks.
|
11 |
*
|
12 |
*/
|
13 |
#include <stdint.h> |
14 |
#include <stdlib.h> |
15 |
#include <stdio.h> |
16 |
#include <sys/time.h> |
17 |
#include <errno.h> |
18 |
#include <assert.h> |
19 |
#include <string.h> |
20 |
#include "peer.h" |
21 |
#include "peerset.h" |
22 |
#include "chunkidset.h" |
23 |
#include "trade_sig_la.h" |
24 |
#include "chunk_signaling.h" |
25 |
#include "net_helper.h" |
26 |
#include <trade_sig_ha.h> |
27 |
|
28 |
#include "streaming.h" |
29 |
#include "topology.h" |
30 |
#include "dbg.h" |
31 |
|
32 |
void bmap_received(const struct nodeID *fromid, const struct nodeID *ownerid, struct chunkID_set *c_set, int cb_size, int trans_id) { |
33 |
struct peer *owner;
|
34 |
if (nodeid_equal(fromid, ownerid)) {
|
35 |
owner = nodeid_to_peer(ownerid,1);
|
36 |
} else {
|
37 |
dprintf("%s might be behind ",node_addr(ownerid));
|
38 |
dprintf("NAT:%s\n",node_addr(fromid));
|
39 |
owner = nodeid_to_peer(fromid,1);
|
40 |
} |
41 |
|
42 |
if (owner) { //now we have it almost sure |
43 |
chunkID_set_clear(owner->bmap,cb_size+5); //TODO: some better solution might be needed to keep info about chunks we sent in flight. |
44 |
chunkID_set_union(owner->bmap,c_set); |
45 |
owner->cb_size = cb_size; |
46 |
gettimeofday(&owner->bmap_timestamp, NULL);
|
47 |
} |
48 |
} |
49 |
|
50 |
void offer_received(const struct nodeID *fromid, struct chunkID_set *cset, int max_deliver, int trans_id) { |
51 |
struct peer *from = nodeid_to_peer(fromid,1); |
52 |
dprintf("The peer %s offers %d chunks, max deliver %d.\n", node_addr(fromid), chunkID_set_size(cset), max_deliver);
|
53 |
|
54 |
if (from) {
|
55 |
struct chunkID_set *cset_acc;
|
56 |
|
57 |
//register these chunks in the buffermap. Warning: this should be changed when offers become selective.
|
58 |
chunkID_set_clear(from->bmap,0); //TODO: some better solution might be needed to keep info about chunks we sent in flight. |
59 |
chunkID_set_union(from->bmap,cset); |
60 |
gettimeofday(&from->bmap_timestamp, NULL);
|
61 |
|
62 |
//decide what to accept
|
63 |
cset_acc = get_chunks_to_accept(from, cset, max_deliver, trans_id); |
64 |
|
65 |
//send accept message
|
66 |
dprintf("\t accept %d chunks from peer %s, trans_id %d\n", chunkID_set_size(cset_acc), node_addr(from->id), trans_id);
|
67 |
acceptChunks(fromid, cset_acc, trans_id); |
68 |
|
69 |
chunkID_set_free(cset_acc); |
70 |
} |
71 |
} |
72 |
|
73 |
void accept_received(const struct nodeID *fromid, struct chunkID_set *cset, int max_deliver, int trans_id) { |
74 |
struct peer *from = nodeid_to_peer(fromid,0); //verify that we have really offered, 0 at least garantees that we've known the peer before |
75 |
dprintf("The peer %s accepted our offer for %d chunks, max deliver %d.\n", node_addr(fromid), chunkID_set_size(cset), max_deliver);
|
76 |
|
77 |
if (from) {
|
78 |
send_accepted_chunks(from, cset, max_deliver, trans_id); |
79 |
} |
80 |
} |
81 |
|
82 |
|
83 |
/**
|
84 |
* Dispatcher for signaling messages.
|
85 |
*
|
86 |
* This method decodes the signaling messages, retrieving the set of chunk and the signaling
|
87 |
* message, invoking the corresponding method.
|
88 |
*
|
89 |
* @param[in] buff buffer which contains the signaling message
|
90 |
* @param[in] buff_len length of the buffer
|
91 |
* @return 0 on success, <0 on error
|
92 |
*/
|
93 |
|
94 |
int sigParseData(const struct nodeID *fromid, uint8_t *buff, int buff_len) { |
95 |
struct chunkID_set *c_set;
|
96 |
struct nodeID *ownerid;
|
97 |
enum signaling_type sig_type;
|
98 |
int max_deliver = 0, trans_id = 0; |
99 |
int ret = 1; |
100 |
dprintf("Decoding signaling message...\n");
|
101 |
|
102 |
ret = parseSignaling(buff + 1, buff_len-1, &ownerid, &c_set, &max_deliver, &trans_id, &sig_type); |
103 |
if (ret < 0) { |
104 |
fprintf(stdout, "ERROR parsing signaling message\n");
|
105 |
return -1; |
106 |
} |
107 |
switch (sig_type) {
|
108 |
case sig_send_buffermap:
|
109 |
bmap_received(fromid, ownerid, c_set, max_deliver, trans_id); //FIXME: cb_size has gone from signaling
|
110 |
break;
|
111 |
case sig_offer:
|
112 |
offer_received(fromid, c_set, max_deliver, trans_id); |
113 |
break;
|
114 |
case sig_accept:
|
115 |
accept_received(fromid, c_set, chunkID_set_size(c_set), trans_id); |
116 |
break;
|
117 |
default:
|
118 |
ret = -1;
|
119 |
} |
120 |
chunkID_set_free(c_set); |
121 |
nodeid_free(ownerid); |
122 |
return ret;
|
123 |
} |