Optimize playlist transfer

This commit is contained in:
momo5502 2016-04-13 20:57:44 +02:00
parent 377ba8d4cb
commit 44e6d6acc8
4 changed files with 34 additions and 34 deletions

View File

@ -21,17 +21,20 @@ namespace Components
{
int numArgs;
LPWSTR* argv = CommandLineToArgvW(GetCommandLineW(), &numArgs);
for (int i = 0; i < numArgs; ++i)
if (argv)
{
std::wstring wFlag(argv[i]);
if (wFlag[0] == L'-')
for (int i = 0; i < numArgs; ++i)
{
Flags::EnabledFlags.push_back(std::string(++wFlag.begin(), wFlag.end()));
std::wstring wFlag(argv[i]);
if (wFlag[0] == L'-')
{
Flags::EnabledFlags.push_back(std::string(++wFlag.begin(), wFlag.end()));
}
}
}
LocalFree(argv);
LocalFree(argv);
}
}
Flags::Flags()

View File

@ -46,15 +46,12 @@ namespace Components
Logger::Print("Received playlist request, sending currently stored buffer.\n");
std::string compressedList = Utils::Compression::ZLib::Compress(Playlist::CurrentPlaylistBuffer);
unsigned int size = compressedList.size();
unsigned int hash = Utils::Cryptography::JenkinsOneAtATime::Compute(compressedList.data(), compressedList.size());
std::string response;
response.append(reinterpret_cast<char*>(&hash), 4);
response.append(reinterpret_cast<char*>(&size), 4);
response.append(compressedList);
Proto::Party::Playlist list;
list.set_hash(Utils::Cryptography::JenkinsOneAtATime::Compute(compressedList.data(), compressedList.size()));
list.set_buffer(compressedList);
Network::SendCommand(address, "playlistresponse", response);
Network::SendCommand(address, "playlistResponse", list.SerializeAsString());
}
void Playlist::PlaylistReponse(Network::Address address, std::string data)
@ -63,34 +60,24 @@ namespace Components
{
if (address == Party::Target())
{
if (data.size() <= 8)
Proto::Party::Playlist list;
if (!list.ParseFromString(data))
{
Party::PlaylistError(Utils::VA("Received playlist response, but it is invalid."));
Party::PlaylistError(Utils::VA("Received playlist response from %s, but it is invalid.", address.GetString()));
Playlist::ReceivedPlaylistBuffer.clear();
return;
}
else
{
// Read hash and length
unsigned int hash = *reinterpret_cast<unsigned int*>(const_cast<char*>(data.data()));
unsigned int length = *reinterpret_cast<unsigned int*>(const_cast<char*>(data.data() + 4));
// Verify length
if (length > (data.size() - 8))
{
Party::PlaylistError(Utils::VA("Received playlist response, but it is too short."));
Playlist::ReceivedPlaylistBuffer.clear();
return;
}
// Generate buffer and hash
std::string compressedData(data.data() + 8, length);
unsigned int hash2 = Utils::Cryptography::JenkinsOneAtATime::Compute(compressedData.data(), compressedData.size());
std::string compressedData(list.buffer());
unsigned int hash = Utils::Cryptography::JenkinsOneAtATime::Compute(compressedData.data(), compressedData.size());
//Validate hashes
if (hash2 != hash)
if (hash != list.hash())
{
Party::PlaylistError(Utils::VA("Received playlist response, but the checksum did not match (%d != %d).", hash, hash2));
Party::PlaylistError(Utils::VA("Received playlist response from %s, but the checksum did not match (%d != %d).", address.GetString(), list.hash(), hash));
Playlist::ReceivedPlaylistBuffer.clear();
return;
}
@ -150,8 +137,8 @@ namespace Components
Utils::Hook::Set<BYTE>(0x4D6E60, 0xC3);
}
Network::Handle("getplaylist", PlaylistRequest);
Network::Handle("playlistresponse", PlaylistReponse);
Network::Handle("getPlaylist", PlaylistRequest);
Network::Handle("playlistResponse", PlaylistReponse);
}
Playlist::~Playlist()

9
src/Proto/party.proto Normal file
View File

@ -0,0 +1,9 @@
syntax = "proto3";
package Proto.Party;
message Playlist
{
uint32 hash = 1;
bytes buffer = 2;
}

View File

@ -70,6 +70,7 @@
// Protobuf
#include "proto/network.pb.h"
#include "proto/party.pb.h"
#include "proto/auth.pb.h"
#include "proto/node.pb.h"
#include "proto/rcon.pb.h"