summaryrefslogtreecommitdiff
path: root/AudioManagerDaemon/test/CommonFunctions.h
blob: b7c3a40ad9d73e2f076f409efa6b75bcb4491c26 (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
/*
 * CommonHeaders.h
 *
 *  Created on: Dec 10, 2011
 *      Author: christian
 */

#ifndef COMMONHEADERS_H_
#define COMMONHEADERS_H_

#include <gtest/gtest.h>
#include "DatabaseHandler.h"

using namespace am;

class CommonFunctions
{
public:

	static std::vector<am_ConnectionFormat_e> getStandardConnectionFormatList();
	static std::vector<am_SoundProperty_s> getStandardSoundPropertyList();
	static std::vector<am_MainSoundProperty_s> getStandardMainSoundPropertyList();
	static std::vector<bool> getStandardConvertionMatrix();
	bool compareSource(std::vector<am_Source_s>::iterator listIterator, const am_Source_s& sourceData);
	bool compareSink(std::vector<am_Sink_s>::iterator listIterator, const am_Sink_s& sinkData);
	bool compareGateway(std::vector<am_Gateway_s>::iterator listIterator, const am_Gateway_s& gatewayData);
	bool compareGateway1(const am_Gateway_s gateway1, const am_Gateway_s gatewayData);
	bool compareSinkMainSink(std::vector<am_SinkType_s>::iterator listIterator, const std::vector<am_Sink_s>& sinkList);
	bool compareSinkMainSource(std::vector<am_SourceType_s>::iterator listIterator, const std::vector<am_Source_s>& sourceList);
	void createSink(am_Sink_s& sink) const;
	void createSource(am_Source_s& source) const ;
	void createDomain(am_Domain_s& domain) const;
	void createGateway(am_Gateway_s& gateway);
	void createConnection(am_Connection_s& connection) const ;
	void createMainConnection(am_MainConnection_s& mainConnection, am_Route_s route) const;
	void connectionList2RoutingList(std::vector<am_RoutingElement_s>& routingList, const std::vector<am_Connection_s>& connectionList);

	struct sortBySinkID
	{
		bool operator()(const am_RoutingElement_s & a, const am_RoutingElement_s & b) const
		{
			return (a.sinkID < b.sinkID);
		}
	};

	struct sortByConnectionFormat
	{
		bool operator()(const am_ConnectionFormat_e & a, const am_ConnectionFormat_e & b) const
		{
			return (a < b);
		}
	};

	struct sortByMainSoundProperty
	{
		bool operator()(const am_MainSoundProperty_s & a, const am_MainSoundProperty_s & b) const
		{
			return (a.type > b.type);
		}
	};

	struct sortBySoundProperty
	{
		bool operator()(const am_SoundProperty_s & a, const am_SoundProperty_s & b) const
		{
			return (a.type < b.type);
		}
	};
};




#endif /* COMMONHEADERS_H_ */