-
Notifications
You must be signed in to change notification settings - Fork 244
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
7a7c31b
commit 96c201d
Showing
18 changed files
with
703 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
80 changes: 80 additions & 0 deletions
80
...lugin/include/sdl_rpc_plugin/commands/hmi/basic_communication_close_application_request.h
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,80 @@ | ||
/* | ||
Copyright (c) 2019, Ford Motor Company, Livio | ||
All rights reserved. | ||
Redistribution and use in source and binary forms, with or without | ||
modification, are permitted provided that the following conditions are met: | ||
Redistributions of source code must retain the above copyright notice, this | ||
list of conditions and the following disclaimer. | ||
Redistributions in binary form must reproduce the above copyright notice, | ||
this list of conditions and the following | ||
disclaimer in the documentation and/or other materials provided with the | ||
distribution. | ||
Neither the name of the the copyright holders nor the names of their | ||
contributors may be used to endorse or promote products derived from this | ||
software without specific prior written permission. | ||
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" | ||
AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE | ||
IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE | ||
ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE | ||
LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR | ||
CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF | ||
SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS | ||
INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN | ||
CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) | ||
ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE | ||
POSSIBILITY OF SUCH DAMAGE. | ||
*/ | ||
|
||
#ifndef SRC_COMPONENTS_APPLICATION_MANAGER_RPC_PLUGINS_SDL_RPC_PLUGIN_INCLUDE_SDL_RPC_PLUGIN_COMMANDS_HMI_BASIC_COMMUNICATION_CLOSE_APPLICATION_REQUEST_H_ | ||
#define SRC_COMPONENTS_APPLICATION_MANAGER_RPC_PLUGINS_SDL_RPC_PLUGIN_INCLUDE_SDL_RPC_PLUGIN_COMMANDS_HMI_BASIC_COMMUNICATION_CLOSE_APPLICATION_REQUEST_H_ | ||
|
||
#include "application_manager/commands/request_to_hmi.h" | ||
#include "sdl_rpc_plugin/sdl_rpc_plugin.h" | ||
|
||
namespace sdl_rpc_plugin { | ||
namespace app_mngr = application_manager; | ||
|
||
namespace commands { | ||
|
||
/** | ||
* @brief BasicCommunicationCloseApplicationRequest command class | ||
**/ | ||
class BasicCommunicationCloseApplicationRequest | ||
: public app_mngr::commands::RequestToHMI { | ||
public: | ||
/** | ||
* @brief BasicCommunicationCloseApplicationRequest class constructor | ||
* | ||
* @param message Incoming SmartObject message | ||
**/ | ||
BasicCommunicationCloseApplicationRequest( | ||
const app_mngr::commands::MessageSharedPtr& message, | ||
app_mngr::ApplicationManager& application_manager, | ||
app_mngr::rpc_service::RPCService& rpc_service, | ||
app_mngr::HMICapabilities& hmi_capabilities, | ||
policy::PolicyHandlerInterface& policy_handle); | ||
|
||
/** | ||
* @brief BasicCommunicationCloseApplicationRequest class destructor | ||
**/ | ||
virtual ~BasicCommunicationCloseApplicationRequest(); | ||
|
||
/** | ||
* @brief Execute command | ||
**/ | ||
virtual void Run(); | ||
|
||
private: | ||
DISALLOW_COPY_AND_ASSIGN(BasicCommunicationCloseApplicationRequest); | ||
}; | ||
|
||
} // namespace commands | ||
|
||
} // namespace sdl_rpc_plugin | ||
|
||
#endif // SRC_COMPONENTS_APPLICATION_MANAGER_RPC_PLUGINS_SDL_RPC_PLUGIN_INCLUDE_SDL_RPC_PLUGIN_COMMANDS_HMI_BASIC_COMMUNICATION_CLOSE_APPLICATION_REQUEST_H_ |
80 changes: 80 additions & 0 deletions
80
...ugin/include/sdl_rpc_plugin/commands/hmi/basic_communication_close_application_response.h
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,80 @@ | ||
/* | ||
Copyright (c) 2019, Ford Motor Company, Livio | ||
All rights reserved. | ||
Redistribution and use in source and binary forms, with or without | ||
modification, are permitted provided that the following conditions are met: | ||
Redistributions of source code must retain the above copyright notice, this | ||
list of conditions and the following disclaimer. | ||
Redistributions in binary form must reproduce the above copyright notice, | ||
this list of conditions and the following | ||
disclaimer in the documentation and/or other materials provided with the | ||
distribution. | ||
Neither the name of the the copyright holders nor the names of their | ||
contributors may be used to endorse or promote products derived from this | ||
software without specific prior written permission. | ||
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" | ||
AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE | ||
IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE | ||
ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE | ||
LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR | ||
CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF | ||
SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS | ||
INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN | ||
CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) | ||
ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE | ||
POSSIBILITY OF SUCH DAMAGE. | ||
*/ | ||
|
||
#ifndef SRC_COMPONENTS_APPLICATION_MANAGER_RPC_PLUGINS_SDL_RPC_PLUGIN_INCLUDE_SDL_RPC_PLUGIN_COMMANDS_HMI_BASIC_COMMUNICATION_CLOSE_APPLICATION_RESPONSE_H_ | ||
#define SRC_COMPONENTS_APPLICATION_MANAGER_RPC_PLUGINS_SDL_RPC_PLUGIN_INCLUDE_SDL_RPC_PLUGIN_COMMANDS_HMI_BASIC_COMMUNICATION_CLOSE_APPLICATION_RESPONSE_H_ | ||
|
||
#include "application_manager/commands/response_from_hmi.h" | ||
#include "sdl_rpc_plugin/sdl_rpc_plugin.h" | ||
|
||
namespace sdl_rpc_plugin { | ||
namespace app_mngr = application_manager; | ||
|
||
namespace commands { | ||
|
||
/** | ||
* @brief BasicCommunicationCloseApplicationResponse command class | ||
**/ | ||
class BasicCommunicationCloseApplicationResponse | ||
: public app_mngr::commands::ResponseFromHMI { | ||
public: | ||
/** | ||
* @brief BasicCommunicationCloseApplicationResponse class constructor | ||
* | ||
* @param message Incoming SmartObject message | ||
**/ | ||
BasicCommunicationCloseApplicationResponse( | ||
const app_mngr::commands::MessageSharedPtr& message, | ||
app_mngr::ApplicationManager& application_manager, | ||
app_mngr::rpc_service::RPCService& rpc_service, | ||
app_mngr::HMICapabilities& hmi_capabilities, | ||
policy::PolicyHandlerInterface& policy_handle); | ||
|
||
/** | ||
* @brief BasicCommunicationCloseApplicationResponse class destructor | ||
**/ | ||
virtual ~BasicCommunicationCloseApplicationResponse(); | ||
|
||
/** | ||
* @brief Execute command | ||
**/ | ||
virtual void Run(); | ||
|
||
private: | ||
DISALLOW_COPY_AND_ASSIGN(BasicCommunicationCloseApplicationResponse); | ||
}; | ||
|
||
} // namespace commands | ||
|
||
} // namespace sdl_rpc_plugin | ||
|
||
#endif // SRC_COMPONENTS_APPLICATION_MANAGER_RPC_PLUGINS_SDL_RPC_PLUGIN_INCLUDE_SDL_RPC_PLUGIN_COMMANDS_HMI_BASIC_COMMUNICATION_CLOSE_APPLICATION_RESPONSE_H_ |
85 changes: 85 additions & 0 deletions
85
...plugins/sdl_rpc_plugin/include/sdl_rpc_plugin/commands/mobile/close_application_request.h
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,85 @@ | ||
/* | ||
Copyright (c) 2019, Ford Motor Company, Livio | ||
All rights reserved. | ||
Redistribution and use in source and binary forms, with or without | ||
modification, are permitted provided that the following conditions are met: | ||
Redistributions of source code must retain the above copyright notice, this | ||
list of conditions and the following disclaimer. | ||
Redistributions in binary form must reproduce the above copyright notice, | ||
this list of conditions and the following | ||
disclaimer in the documentation and/or other materials provided with the | ||
distribution. | ||
Neither the name of the the copyright holders nor the names of their | ||
contributors may be used to endorse or promote products derived from this | ||
software without specific prior written permission. | ||
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" | ||
AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE | ||
IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE | ||
ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE | ||
LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR | ||
CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF | ||
SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS | ||
INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN | ||
CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) | ||
ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE | ||
POSSIBILITY OF SUCH DAMAGE. | ||
*/ | ||
|
||
#ifndef SRC_COMPONENTS_APPLICATION_MANAGER_RPC_PLUGINS_SDL_RPC_PLUGIN_INCLUDE_SDL_RPC_PLUGIN_COMMANDS_MOBILE_CLOSE_APPLICATION_REQUEST_H_ | ||
#define SRC_COMPONENTS_APPLICATION_MANAGER_RPC_PLUGINS_SDL_RPC_PLUGIN_INCLUDE_SDL_RPC_PLUGIN_COMMANDS_MOBILE_CLOSE_APPLICATION_REQUEST_H_ | ||
|
||
#include "application_manager/commands/command_request_impl.h" | ||
#include "sdl_rpc_plugin/sdl_rpc_plugin.h" | ||
|
||
namespace sdl_rpc_plugin { | ||
namespace app_mngr = application_manager; | ||
|
||
namespace commands { | ||
|
||
/** | ||
* @brief CloseApplicationRequest command class | ||
**/ | ||
class CloseApplicationRequest : public app_mngr::commands::CommandRequestImpl { | ||
public: | ||
/** | ||
* @brief CloseApplicationRequest class constructor | ||
* | ||
* @param message Incoming SmartObject message | ||
**/ | ||
CloseApplicationRequest(const app_mngr::commands::MessageSharedPtr& message, | ||
app_mngr::ApplicationManager& application_manager, | ||
app_mngr::rpc_service::RPCService& rpc_service, | ||
app_mngr::HMICapabilities& hmi_capabilities, | ||
policy::PolicyHandlerInterface& policy_handle); | ||
|
||
/** | ||
* @brief CloseApplicationRequest class destructor | ||
**/ | ||
virtual ~CloseApplicationRequest(); | ||
|
||
/** | ||
* @brief Execute command | ||
**/ | ||
virtual void Run(); | ||
|
||
/** | ||
* @brief Interface method that is called whenever new event received | ||
* | ||
* @param event The received event | ||
*/ | ||
void on_event(const app_mngr::event_engine::Event& event); | ||
|
||
private: | ||
DISALLOW_COPY_AND_ASSIGN(CloseApplicationRequest); | ||
}; | ||
|
||
} // namespace commands | ||
|
||
} // namespace sdl_rpc_plugin | ||
|
||
#endif // SRC_COMPONENTS_APPLICATION_MANAGER_RPC_PLUGINS_SDL_RPC_PLUGIN_INCLUDE_SDL_RPC_PLUGIN_COMMANDS_MOBILE_CLOSE_APPLICATION_REQUEST_H_ |
79 changes: 79 additions & 0 deletions
79
...lugins/sdl_rpc_plugin/include/sdl_rpc_plugin/commands/mobile/close_application_response.h
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,79 @@ | ||
/* | ||
Copyright (c) 2019, Ford Motor Company, Livio | ||
All rights reserved. | ||
Redistribution and use in source and binary forms, with or without | ||
modification, are permitted provided that the following conditions are met: | ||
Redistributions of source code must retain the above copyright notice, this | ||
list of conditions and the following disclaimer. | ||
Redistributions in binary form must reproduce the above copyright notice, | ||
this list of conditions and the following | ||
disclaimer in the documentation and/or other materials provided with the | ||
distribution. | ||
Neither the name of the the copyright holders nor the names of their | ||
contributors may be used to endorse or promote products derived from this | ||
software without specific prior written permission. | ||
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" | ||
AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE | ||
IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE | ||
ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE | ||
LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR | ||
CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF | ||
SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS | ||
INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN | ||
CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) | ||
ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE | ||
POSSIBILITY OF SUCH DAMAGE. | ||
*/ | ||
|
||
#ifndef SRC_COMPONENTS_APPLICATION_MANAGER_RPC_PLUGINS_SDL_RPC_PLUGIN_INCLUDE_SDL_RPC_PLUGIN_COMMANDS_MOBILE_CLOSE_APPLICATION_RESPONSE_H_ | ||
#define SRC_COMPONENTS_APPLICATION_MANAGER_RPC_PLUGINS_SDL_RPC_PLUGIN_INCLUDE_SDL_RPC_PLUGIN_COMMANDS_MOBILE_CLOSE_APPLICATION_RESPONSE_H_ | ||
|
||
#include "application_manager/commands/command_response_impl.h" | ||
#include "sdl_rpc_plugin/sdl_rpc_plugin.h" | ||
|
||
namespace sdl_rpc_plugin { | ||
namespace app_mngr = application_manager; | ||
|
||
namespace commands { | ||
|
||
/** | ||
* @brief CloseApplicationResponse command class | ||
**/ | ||
class CloseApplicationResponse | ||
: public app_mngr::commands::CommandResponseImpl { | ||
public: | ||
/** | ||
* @brief CloseApplicationResponse class constructor | ||
* | ||
* @param message Incoming SmartObject message | ||
**/ | ||
CloseApplicationResponse(const app_mngr::commands::MessageSharedPtr& message, | ||
app_mngr::ApplicationManager& application_manager, | ||
app_mngr::rpc_service::RPCService& rpc_service, | ||
app_mngr::HMICapabilities& hmi_capabilities, | ||
policy::PolicyHandlerInterface& policy_handle); | ||
|
||
/** | ||
* @brief CloseApplicationResponse class destructor | ||
**/ | ||
virtual ~CloseApplicationResponse(); | ||
|
||
/** | ||
* @brief Execute command | ||
**/ | ||
virtual void Run(); | ||
|
||
private: | ||
DISALLOW_COPY_AND_ASSIGN(CloseApplicationResponse); | ||
}; | ||
|
||
} // namespace commands | ||
|
||
} // namespace sdl_rpc_plugin | ||
|
||
#endif // SRC_COMPONENTS_APPLICATION_MANAGER_RPC_PLUGINS_SDL_RPC_PLUGIN_INCLUDE_SDL_RPC_PLUGIN_COMMANDS_MOBILE_CLOSE_APPLICATION_RESPONSE_H_ |
Oops, something went wrong.