summaryrefslogtreecommitdiff
path: root/AudioManagerDaemon/include/CAmNodeStateCommunicatorCAPI.h
blob: 6c063e5e7cd28f74451065575b1ac60453daa2de (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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
/**
 * 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 Aleksandar Donchev, aleksander.donchev@partner.bmw.de BMW 2013
 *
 * \file CAmNodeStateCommunicatorCAPI.h
 * For further information see http://www.genivi.org/.
 *
 */
#ifndef CAMNODESTATECOMMUNICATORCAPI_H_
#define CAMNODESTATECOMMUNICATORCAPI_H_

#include <org/genivi/NodeStateManager/Consumer/ConsumerProxy.h>
#include "CAmNodeStateCommunicator.h"
#include "LifeCycleConsumerStubDefault.h"

namespace am
{
using namespace CommonAPI;
using namespace org::genivi::NodeStateManager::Consumer;
using namespace org::genivi::NodeStateManager::LifeCycleConsumer;


class CAmCommonAPIWrapper;
/** communicates with the NSM
 *  The CAmNodeStateCommunicator communicates with the NodeStateManager via Dbus Common-API's wrapping mechanism. Only works, if CAmCommonAPIWrapper is enabled.
 */
class CAmNodeStateCommunicatorCAPI : public CAmNodeStateCommunicator
{
	/* A concrete implementation of the life cycle stub.
	 * An object from this class is instantiated from the common-api factory.
	 * It forwards the invocations to its delegate CAmNodeStateCommunicatorCAPI.
	*/
	class CAmNodeStateCommunicatorServiceImpl : public LifeCycleConsumerStubDefault
	{
		CAmNodeStateCommunicatorCAPI *mpDelegate;
	public:
		CAmNodeStateCommunicatorServiceImpl ():mpDelegate(NULL) {}
		CAmNodeStateCommunicatorServiceImpl (CAmNodeStateCommunicatorCAPI *aNSCommunicator):mpDelegate(aNSCommunicator) {}
		~CAmNodeStateCommunicatorServiceImpl() { mpDelegate = NULL; }

		CAmNodeStateCommunicatorCAPI *getDelegate() { return mpDelegate; };
		void setDelegate(CAmNodeStateCommunicatorCAPI *aDelegate) { mpDelegate = aDelegate; };

		void LifecycleRequest(uint32_t Request, uint32_t RequestId, int32_t& ErrorCode) {
		   if(mpDelegate)
			   mpDelegate->cbReceivedLifecycleRequest(Request, RequestId, ErrorCode);
		}
	};

	CAmCommonAPIWrapper *mpCAPIWrapper;
	std::shared_ptr<ConsumerProxy<> > mNSMProxy;
	std::shared_ptr<CAmNodeStateCommunicatorCAPI::CAmNodeStateCommunicatorServiceImpl> mNSMStub;
public:
	CAmNodeStateCommunicatorCAPI(CAmCommonAPIWrapper* iCAPIWrapper);
    virtual ~CAmNodeStateCommunicatorCAPI();

    am_Error_e nsmGetRestartReasonProperty(NsmRestartReason_e& restartReason) ;
    am_Error_e nsmGetShutdownReasonProperty(NsmShutdownReason_e& ShutdownReason) ;
    am_Error_e nsmGetRunningReasonProperty(NsmRunningReason_e& nsmRunningReason) ;
    NsmErrorStatus_e nsmGetNodeState(NsmNodeState_e& nsmNodeState) ;
    NsmErrorStatus_e nsmGetSessionState(const std::string& sessionName, const NsmSeat_e& seatID, NsmSessionState_e& sessionState) ;
    NsmErrorStatus_e nsmGetApplicationMode(NsmApplicationMode_e& applicationMode) ;
    NsmErrorStatus_e nsmRegisterShutdownClient(const uint32_t shutdownMode, const uint32_t timeoutMs) ;
    NsmErrorStatus_e nsmUnRegisterShutdownClient(const uint32_t shutdownMode) ;
    am_Error_e nsmGetInterfaceVersion(uint32_t& version) ;
    NsmErrorStatus_e nsmSendLifecycleRequestComplete(const uint32_t RequestId, const NsmErrorStatus_e status) ;

    bool isServiceAvailable();

    static const char * CLIENT_STRING;
    static const char * SERVER_STRING;
    static const char * OBJECT_NAME;
    static const char * BUS_NAME;

private:
    /* Client events */
    void onNodeStateEvent(const int32_t nodeState);
    void onNodeApplicationModeEvent(const int32_t nodeApplicationMode);
    void onSessionStateChangedEvent(const std::string & sessionName, const int32_t seatID, const int32_t sessionState);
    void onServiceStatusEvent(const CommonAPI::AvailabilityStatus& serviceStatus);
    /* Service callbacks */
    void cbReceivedLifecycleRequest(uint32_t Request, uint32_t RequestId, int32_t& ErrorCode);
protected:
    bool mIsServiceAvailable;
};

}
/* namespace am */
#endif /* CAMNODESTATECOMMUNICATORCAPI_H_ */