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
87
|
/**
* Copyright (C) 2012, BMW AG
*
* This file is part of GENIVI Project AudioManager.
*
* Contributions are licensed to the GENIVI Alliance under one or more
* Contribution License Agreements.
*
* \copyright
* This Source Code Form is subject to the terms of the
* Mozilla Public License, v. 2.0. If a copy of the MPL was not distributed with
* this file, You can obtain one at http://mozilla.org/MPL/2.0/.
*
*
* \author Christian Mueller, christian.ei.mueller@bmw.de BMW 2011,2012
*
* For further information see http://www.genivi.org/.
*
*/
#ifndef COMMONHEADERS_H_
#define COMMONHEADERS_H_
#include "audiomanagertypes.h"
namespace am
{
class CAmCommonFunctions
{
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();
static std::vector<am_NotificationConfiguration_s> getStandardNotificationConfigurationList();
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);
bool compareRoute(am_Route_s a, am_Route_s b);
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 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_ */
|