summaryrefslogtreecommitdiff
path: root/orkbasecxx/OrkClient.h
blob: b041846b82496db558cbc6d6261968f892edb65b (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
/*
 * 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
 *
 */

#ifndef __ORKCLIENT_H__
#define __ORKCLIENT_H__

#include <log4cxx/logger.h>
#include "messages/SyncMessage.h"
#include "messages/AsyncMessage.h"

/** Abstract base class for all clients. */
class DLL_IMPORT_EXPORT_ORKBASE OrkClient
{
public:
	OrkClient();
	virtual bool Execute(SyncMessage& request, AsyncMessage& response, CStdString& hostname, int tcpPort, CStdString& serviceName, int timeout = 5) = 0;
protected:
	void LogError(CStdString& errorString);

	log4cxx::LoggerPtr m_log;
	static time_t s_lastErrorReportedTime;
};

/** Abstract base class for all clients based on http. */
class DLL_IMPORT_EXPORT_ORKBASE OrkHttpClient : public OrkClient
{
public:
	virtual bool Execute(SyncMessage& request, AsyncMessage& response, CStdString& hostname, int tcpPort, CStdString& serviceName, int timeout = 5) = 0;
	bool ExecuteUrl(CStdString& request, CStdString& response, CStdString& hostname, int tcpPort, int timeout = 5);
protected:
};

/** Client that uses a HTTP URL request and receives the response back in the SingleLine format. */
class DLL_IMPORT_EXPORT_ORKBASE OrkHttpSingleLineClient : public OrkHttpClient
{
public:
	bool Execute(SyncMessage& request, AsyncMessage& response, CStdString& hostname, int tcpPort, CStdString& serviceName, int timeout = 5);
};

#endif