summaryrefslogtreecommitdiff
path: root/orkaudio/Reporting.cpp
blob: 1360dfe76e17175df420797069dea94c8e225b7b (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
/*
 * Oreka -- A media capture and retrieval platform
 * 
 * Copyright (C) 2005, orecx LLC
 *
 * http://www.orecx.com
 *
 * This program is free software, distributed under the terms of
 * the GNU General Public License.
 * Please refer to http://www.gnu.org/copyleft/gpl.html
 *
 */

#include "ConfigManager.h"
#include "Reporting.h"
#include "LogManager.h"
#include "messages/Message.h"
#include "OrkClient.h"

Reporting Reporting::m_reportingSingleton;

Reporting* Reporting::GetInstance()
{
	return &m_reportingSingleton;
}

void Reporting::AddAudioTape(AudioTapeRef audioTapeRef)
{
	if (!m_audioTapeQueue.push(audioTapeRef))
	{
		LOG4CXX_ERROR(LOG.reportingLog, CStdString("Reporting: queue full"));
	}
}

void Reporting::ThreadHandler(void *args)
{
	Reporting* pReporting = Reporting::GetInstance();

	for(;;)
	{
		AudioTapeRef audioTapeRef = pReporting->m_audioTapeQueue.pop();

		MessageRef msgRef;
		audioTapeRef->GetMessage(msgRef);
		if(msgRef.get() && CONFIG.m_enableReporting)
		{
			CStdString msgAsSingleLineString = msgRef->SerializeSingleLine();
			LOG4CXX_INFO(LOG.reportingLog, msgAsSingleLineString);

			OrkHttpSingleLineClient c;
			SimpleResponseMsg srm;
			while (!c.Execute((SyncMessage&)(*msgRef.get()), srm, CONFIG.m_trackerHostname, CONFIG.m_trackerTcpPort, CONFIG.m_trackerServicename, CONFIG.m_clientTimeout))
			{
				ACE_OS::sleep(5);
			}
			//CStdString host("foo");
			//while (!msgRef->InvokeXmlRpc(host, 10000))
			//{
			//	ACE_OS::sleep(5);
			//}
		}
	}
}