summaryrefslogtreecommitdiffstats
path: root/include/genivi_request.h
diff options
context:
space:
mode:
authorMatt Ranostay <matt.ranostay@konsulko.com>2019-10-19 13:45:11 -0700
committerMatt Ranostay <matt.ranostay@konsulko.com>2019-10-31 01:59:13 -0700
commit3e94024998c1615bd30306aab7537db22161a9ce (patch)
tree6bea3ac4de640d98c8c27ffd0c02f9eb86ca0773 /include/genivi_request.h
parent9539611e896e61e27154bbb5917188753a983871 (diff)
binding: navigation: rewrite of navigation binding
To remove dependency on DBus the binding needed to be rewritten to output pure JSON output to subscribed consumers. Bug-AGL: SPEC-2880 Change-Id: Ie85dfccd42ca36119116a0fbfb16bf4e96efc184 Signed-off-by: Matt Ranostay <matt.ranostay@konsulko.com>
Diffstat (limited to 'include/genivi_request.h')
-rw-r--r--include/genivi_request.h37
1 files changed, 0 insertions, 37 deletions
diff --git a/include/genivi_request.h b/include/genivi_request.h
deleted file mode 100644
index 75201c7..0000000
--- a/include/genivi_request.h
+++ /dev/null
@@ -1,37 +0,0 @@
-// Copyright 2017 AW SOFTWARE CO.,LTD
-// Copyright 2017 AISIN AW CO.,LTD
-
-#pragma once
-
-#include <map>
-#include <vector>
-#include <stdint.h>
-
-typedef std::tuple<double, double> Waypoint;
-
-/**
- * @brief Genivi API call.
- */
-class GeniviRequest
-{
-public:
- ~GeniviRequest();
-
- std::map< int32_t, double > NavicoreGetPosition( const std::vector< int32_t >& valuesToReturn );
- std::vector< uint32_t > NavicoreGetAllRoutes();
- uint32_t NavicoreCreateRoute( const uint32_t& sessionHandle );
- void NavicorePauseSimulation( const uint32_t& sessionHandle );
- void NavicoreSetSimulationMode( const uint32_t& sessionHandle, const bool& activate );
- void NavicoreCancelRouteCalculation( const uint32_t& sessionHandle, const uint32_t& routeHandle );
- void NavicoreSetWaypoints( const uint32_t& sessionHandle, const uint32_t& routeHandle,
- const bool& startFromCurrentPosition, const std::vector<Waypoint>& waypointsList );
- void NavicoreCalculateRoute( const uint32_t& sessionHandle, const uint32_t& routeHandle );
- std::map<uint32_t, std::string> NavicoreGetAllSessions();
-
-private:
- void* navicore_;
-
- void CreateDBusSession();
- bool CheckSession();
-};
-