summaryrefslogtreecommitdiff
path: root/enhanced-position-service/dbus-service/src/position-feedback.cpp
blob: 0538c0c3faa731dd6b36bf23b73d3ef3a7261421 (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
/**************************************************************************
* @licence app begin@
*
* SPDX-License-Identifier: MPL-2.0
*
* \ingroup EnhancedPositionService
* \author Marco Residori <marco.residori@xse.de>
*
* \copyright Copyright (C) 2014, XS Embedded GmbH
* 
* \license
* 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/.
*
* @licence end@
**************************************************************************/

#include "position-feedback.h"
#include "log.h"

DLT_IMPORT_CONTEXT(gCtx);

PositionFeedback::PositionFeedback(DBus::Connection & connection, const char * path)
  : DBus::ObjectAdaptor(connection, path) 
{
}  

PositionFeedback::~PositionFeedback()
{
}

::DBus::Struct< uint16_t, uint16_t, uint16_t, std::string > PositionFeedback::GetVersion()
{
  ::DBus::Struct< uint16_t, uint16_t, uint16_t, std::string > Version;

  Version._1 = 3;
  Version._2 = 0;
  Version._3 = 0;
  Version._4 = std::string("05-08-2014");

  return Version;
}

void PositionFeedback::SetPositionFeedback(const std::vector< std::map< uint64_t, ::DBus::Variant > >& feedback, const uint64_t& timestamp, const uint16_t& feedbackType)
{
  throw DBus::ErrorNotSupported("Method not supported yet");
}

void PositionFeedback::run()
{
  LOG_INFO_MSG(gCtx,"Starting PositionFeedback dispatcher...");
}

void PositionFeedback::shutdown()
{
  LOG_INFO_MSG(gCtx,"Shutting down PositionFeedback dispatcher...");
}