summaryrefslogtreecommitdiff
path: root/protocols/Xfire/src/Xfire_avatar_loader.cpp
blob: 2e509d3b356b869c67f44762f19a3cdc95e58d94 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
#include "stdafx.h"
#include "Xfire_avatar_loader.h"

Xfire_avatar_loader::Xfire_avatar_loader(xfirelib::Client* client) {
	threadrunning=FALSE;
	this->client=client;
	InitializeCriticalSection(&this->avatarMutex);
}

Xfire_avatar_loader::~Xfire_avatar_loader() {
	//liste leeren, damit der laufende thread abgebrochen wird
	list.clear();
	//warten bis der thread geschlossen wurde
	EnterCriticalSection(&this->avatarMutex);
	LeaveCriticalSection(&this->avatarMutex);
	//critical section entfernen
	DeleteCriticalSection(&this->avatarMutex);
}

void Xfire_avatar_loader::loadThread(LPVOID lparam) {
	Xfire_avatar_loader* loader=(Xfire_avatar_loader*)lparam;
	
	//kein loader, dann abbruch
	if (!lparam)
		return;

	if (loader) {
		EnterCriticalSection(&loader->avatarMutex);
		loader->threadrunning=TRUE;
	}

	while(1){
		//keinen avatarload auftrag mehr
		if (!loader->list.size())
			break;

		//letzten load process holen
		Xfire_avatar_process process=loader->list.back();

		//buddyinfo abfragen
		GetBuddyInfo buddyinfo;
		buddyinfo.userid=process.userid;
		if (loader->client)
			if (loader->client->connected)
			{
				loader->client->send(&buddyinfo);
			}
			else //nicht mehr verbunden? dann liste leeren und schleife abbrechen
			{
				loader->list.clear();
				break;
			}

		//auftrag entfernen
		loader->list.pop_back();

		Sleep(1000);
	}

	if (loader)
	{
		loader->threadrunning=FALSE;
		LeaveCriticalSection(&loader->avatarMutex);
	}

	return;
}

BOOL Xfire_avatar_loader::loadAvatar(HANDLE hcontact,char*username,unsigned int userid) {
	Xfire_avatar_process process={0};

	//struktur füllen
	process.hcontact = hcontact;
	if (username)
		strcpy_s(process.username,128,username);
	process.userid=userid;

	//Avataranfrage an die liste übergeben
	this->list.push_back(process);

	if (!threadrunning && client!=NULL) {
		mir_forkthread(Xfire_avatar_loader::loadThread,(LPVOID)this);
	}

	return TRUE;
}