[1a3c42d] | 1 | #include "MessageProcessor.h"
|
---|
| 2 |
|
---|
[5a64bea] | 3 | #include <iostream>
|
---|
| 4 |
|
---|
[198cf2d] | 5 | #include "Common.h"
|
---|
| 6 |
|
---|
[5a64bea] | 7 | MessageProcessor::MessageProcessor() {
|
---|
| 8 | lastUsedId = 0;
|
---|
| 9 | }
|
---|
| 10 |
|
---|
| 11 | MessageProcessor::~MessageProcessor() {
|
---|
| 12 | }
|
---|
| 13 |
|
---|
[1a3c42d] | 14 | int MessageProcessor::sendMessage(NETWORK_MSG *msg, int sock, struct sockaddr_in *dest) {
|
---|
[9b5d30b] | 15 | msg->id = ++lastUsedId;
|
---|
[5a64bea] | 16 | MessageContainer message(*msg, *dest);
|
---|
[9b5d30b] | 17 | sentMessages[msg->id] = message;
|
---|
[5a64bea] | 18 |
|
---|
[bd2502a] | 19 | cout << "Sending message" << endl;
|
---|
| 20 | cout << "id: " << msg->id << endl;
|
---|
| 21 | cout << "type: " << msg->type << endl;
|
---|
| 22 | cout << "buffer: " << msg->buffer << endl;
|
---|
| 23 |
|
---|
[5a64bea] | 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;
|
---|
[1a3c42d] | 29 | }
|
---|
| 30 |
|
---|
[5a64bea] | 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 |
|
---|
[6b641af] | 37 | if (ret == -1)
|
---|
| 38 | return ret;
|
---|
| 39 |
|
---|
[5a64bea] | 40 | // add id to the NETWORK_MSG struct
|
---|
| 41 | if (msg->type == MSG_TYPE_ACK) {
|
---|
[198cf2d] | 42 | if (!sentMessages[msg->id].isAcked) {
|
---|
[5755e68] | 43 | cout << "Received new ack" << endl;
|
---|
[198cf2d] | 44 | sentMessages[msg->id].isAcked = true;
|
---|
| 45 | sentMessages[msg->id].timeAcked = getCurrentMillis();
|
---|
[6b641af] | 46 | }
|
---|
[198cf2d] | 47 |
|
---|
| 48 | return -1; // don't do any further processing
|
---|
[5a64bea] | 49 | }else {
|
---|
[4fcf7a4] | 50 | if (ret > -1) {
|
---|
| 51 | cout << "Received message" << endl;
|
---|
| 52 | cout << "id: " << msg->id << endl;
|
---|
| 53 | cout << "type: " << msg->type << endl;
|
---|
| 54 | cout << "buffer: " << msg->buffer << endl;
|
---|
| 55 | }
|
---|
[bd2502a] | 56 |
|
---|
[5a64bea] | 57 | NETWORK_MSG ack;
|
---|
| 58 | ack.id = msg->id;
|
---|
[5755e68] | 59 | ack.type = MSG_TYPE_ACK;
|
---|
[5a64bea] | 60 |
|
---|
[5755e68] | 61 | sendto(sock, (char*)&ack, sizeof(NETWORK_MSG), 0, (struct sockaddr *)source, sizeof(struct sockaddr_in));
|
---|
[5a64bea] | 62 | }
|
---|
| 63 |
|
---|
| 64 | return ret;
|
---|
[1a3c42d] | 65 | }
|
---|
| 66 |
|
---|
[5a64bea] | 67 | void MessageProcessor::resendUnackedMessages(int sock) {
|
---|
| 68 | map<int, MessageContainer>::iterator it;
|
---|
| 69 |
|
---|
| 70 | for(it = sentMessages.begin(); it != sentMessages.end(); it++) {
|
---|
| 71 | sendto(sock, (char*)&it->second.msg, sizeof(NETWORK_MSG), 0, (struct sockaddr *)&it->second.clientAddr, sizeof(struct sockaddr_in));
|
---|
| 72 | }
|
---|
[1a3c42d] | 73 | }
|
---|
| 74 |
|
---|
| 75 | void MessageProcessor::cleanAckedMessages() {
|
---|
[af713bc] | 76 | map<int, MessageContainer>::iterator it = sentMessages.begin();
|
---|
[198cf2d] | 77 |
|
---|
[af713bc] | 78 | while (it != sentMessages.end()) {
|
---|
[6b641af] | 79 | if (it->second.isAcked) {
|
---|
| 80 | // cout << "Found acked message" << endl;
|
---|
| 81 | // cout << "time acked" << it->second.timeAcked << endl;
|
---|
| 82 | // cout << "cur time" << getCurrentMillis() << endl;
|
---|
| 83 | if ((getCurrentMillis() - it->second.timeAcked) > 1000) {
|
---|
| 84 | cout << "Message was acked. time to delete it" << endl;
|
---|
| 85 | cout << "old map size" << sentMessages.size() << endl;
|
---|
| 86 | sentMessages.erase(it++);
|
---|
| 87 | cout << "new map size" << sentMessages.size() << endl;
|
---|
| 88 | }else
|
---|
| 89 | it++;
|
---|
| 90 | }else
|
---|
[af713bc] | 91 | it++;
|
---|
[198cf2d] | 92 | }
|
---|
[1a3c42d] | 93 | }
|
---|