1 | #include "MessageProcessor.h"
|
---|
2 |
|
---|
3 | #include <iostream>
|
---|
4 |
|
---|
5 | #include "Common.h"
|
---|
6 |
|
---|
7 | MessageProcessor::MessageProcessor() {
|
---|
8 | lastUsedId = 0;
|
---|
9 | }
|
---|
10 |
|
---|
11 | MessageProcessor::~MessageProcessor() {
|
---|
12 | }
|
---|
13 |
|
---|
14 | int MessageProcessor::sendMessage(NETWORK_MSG *msg, int sock, struct sockaddr_in *dest) {
|
---|
15 | msg->id = ++lastUsedId;
|
---|
16 | MessageContainer message(*msg, *dest);
|
---|
17 | sentMessages[msg->id] = message;
|
---|
18 |
|
---|
19 | cout << "Sending message" << endl;
|
---|
20 | cout << "id: " << msg->id << endl;
|
---|
21 | cout << "type: " << msg->type << endl;
|
---|
22 | cout << "buffer: " << msg->buffer << endl;
|
---|
23 |
|
---|
24 | int ret = sendto(sock, (char*)msg, sizeof(NETWORK_MSG), 0, (struct sockaddr *)dest, sizeof(struct sockaddr_in));
|
---|
25 |
|
---|
26 | cout << "Send a message of type " << msg->type << endl;
|
---|
27 |
|
---|
28 | return ret;
|
---|
29 | }
|
---|
30 |
|
---|
31 | int MessageProcessor::receiveMessage(NETWORK_MSG *msg, int sock, struct sockaddr_in *source) {
|
---|
32 | socklen_t socklen = sizeof(struct sockaddr_in);
|
---|
33 |
|
---|
34 | // assume we don't care about the value of socklen
|
---|
35 | int ret = recvfrom(sock, (char*)msg, sizeof(NETWORK_MSG), 0, (struct sockaddr *)source, &socklen);
|
---|
36 |
|
---|
37 | if (ret == -1)
|
---|
38 | return ret;
|
---|
39 |
|
---|
40 | // add id to the NETWORK_MSG struct
|
---|
41 | if (msg->type == MSG_TYPE_ACK) {
|
---|
42 | if (!sentMessages[msg->id].isAcked) {
|
---|
43 | cout << "Received new ack" << endl;
|
---|
44 | sentMessages[msg->id].isAcked = true;
|
---|
45 | sentMessages[msg->id].timeAcked = getCurrentMillis();
|
---|
46 | }
|
---|
47 |
|
---|
48 | return -1; // don't do any further processing
|
---|
49 | }else {
|
---|
50 | cout << "Received message" << endl;
|
---|
51 | cout << "id: " << msg->id << endl;
|
---|
52 | cout << "type: " << msg->type << endl;
|
---|
53 | cout << "buffer: " << msg->buffer << endl;
|
---|
54 |
|
---|
55 | if (ackedMessages.find(msg->id) == ackedMessages.end()) {
|
---|
56 | cout << "Not a duplicate" << endl;
|
---|
57 |
|
---|
58 | ackedMessages[msg->id] = getCurrentMillis();
|
---|
59 |
|
---|
60 | NETWORK_MSG ack;
|
---|
61 | ack.id = msg->id;
|
---|
62 | ack.type = MSG_TYPE_ACK;
|
---|
63 |
|
---|
64 | sendto(sock, (char*)&ack, sizeof(NETWORK_MSG), 0, (struct sockaddr *)source, sizeof(struct sockaddr_in));
|
---|
65 | }else {
|
---|
66 | cout << "Got duplicate ack" << endl;
|
---|
67 | return -1;
|
---|
68 | }
|
---|
69 | }
|
---|
70 |
|
---|
71 | return ret;
|
---|
72 | }
|
---|
73 |
|
---|
74 | void MessageProcessor::resendUnackedMessages(int sock) {
|
---|
75 | map<int, MessageContainer>::iterator it;
|
---|
76 |
|
---|
77 | for(it = sentMessages.begin(); it != sentMessages.end(); it++) {
|
---|
78 | sendto(sock, (char*)&it->second.msg, sizeof(NETWORK_MSG), 0, (struct sockaddr *)&it->second.clientAddr, sizeof(struct sockaddr_in));
|
---|
79 | }
|
---|
80 | }
|
---|
81 |
|
---|
82 | void MessageProcessor::cleanAckedMessages() {
|
---|
83 | map<int, MessageContainer>::iterator it = sentMessages.begin();
|
---|
84 |
|
---|
85 | while (it != sentMessages.end()) {
|
---|
86 | if (it->second.isAcked) {
|
---|
87 | // cout << "Found acked message" << endl;
|
---|
88 | // cout << "time acked" << it->second.timeAcked << endl;
|
---|
89 | // cout << "cur time" << getCurrentMillis() << endl;
|
---|
90 | if ((getCurrentMillis() - it->second.timeAcked) > 1000) {
|
---|
91 | cout << "Message was acked. time to delete it" << endl;
|
---|
92 | cout << "old map size" << sentMessages.size() << endl;
|
---|
93 | sentMessages.erase(it++);
|
---|
94 | cout << "new map size" << sentMessages.size() << endl;
|
---|
95 | }else
|
---|
96 | it++;
|
---|
97 | }else
|
---|
98 | it++;
|
---|
99 | }
|
---|
100 |
|
---|
101 | map<unsigned int, unsigned long long>::iterator it2 = ackedMessages.begin();
|
---|
102 |
|
---|
103 | while (it2 != ackedMessages.end()) {
|
---|
104 | if ((getCurrentMillis() - it2->second) > 500) {
|
---|
105 | ackedMessages.erase(it2++);
|
---|
106 | cout << "Deleting ack record" << endl;
|
---|
107 | }else
|
---|
108 | it2++;
|
---|
109 | }
|
---|
110 | }
|
---|