diff options
author | Scott Murray <scott.murray@konsulko.com> | 2019-08-30 11:40:23 -0400 |
---|---|---|
committer | Scott Murray <scott.murray@konsulko.com> | 2019-09-05 00:18:27 +0000 |
commit | da9d177514fe438edd8262226cdc770df6c9eb82 (patch) | |
tree | e33d2af8d2e129b372caf34afac37366b641553a /include/binder_reply.h | |
parent | dd61aa309b3a082488c9d3c383c1601fd3efbc2a (diff) |
Initial check in
Initial check in of contents of the original repository:
git://github.com/AGLExport/agl-service-navigation
as of commit 1f1ffc92fcc882aa5e885badbc91a3384f5d77b1.
Bug-AGL: SPEC-2787
Signed-off-by: Scott Murray <scott.murray@konsulko.com>
Change-Id: I02d008ee73cdfd88f1e7587ee57101187b9c4d6d
(cherry picked from commit f14ecdd52975ae365af5ed32648bf55dddacb8d9)
Diffstat (limited to 'include/binder_reply.h')
-rw-r--r-- | include/binder_reply.h | 34 |
1 files changed, 34 insertions, 0 deletions
diff --git a/include/binder_reply.h b/include/binder_reply.h new file mode 100644 index 0000000..44e20d0 --- /dev/null +++ b/include/binder_reply.h @@ -0,0 +1,34 @@ +// Copyright 2017 AW SOFTWARE CO.,LTD +// Copyright 2017 AISIN AW CO.,LTD + +#pragma once + +#include <stdio.h> +#include <stdbool.h> +#include <string> +#include <map> +#include <vector> +#include <json-c/json.h> + +/** + * @brief Response to return to Binder client. + */ +typedef struct APIResponse_ +{ + bool isSuccess; + std::string errMessage; + json_object* json_data; +}APIResponse; + +/** + * @brief Convert information acquired by Genevi API to JSON format. + */ +class BinderReply +{ +public: + APIResponse ReplyNavicoreGetPosition( std::map<int32_t, double>& posList ); + APIResponse ReplyNavicoreGetAllRoutes( std::vector< uint32_t > &allRoutes ); + APIResponse ReplyNavicoreCreateRoute( uint32_t route ); + APIResponse ReplyNavicoreGetAllSessions( std::map<uint32_t, std::string> &allSessions ); +}; + |