AlexaClientSDK  3.0.0
A cross-platform, modular SDK for interacting with the Alexa Voice Service
EndpointInputControllerHandler.h
Go to the documentation of this file.
1 /*
2  * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
3  *
4  * Licensed under the Apache License, Version 2.0 (the "License").
5  * You may not use this file except in compliance with the License.
6  * A copy of the License is located at
7  *
8  * http://aws.amazon.com/apache2.0/
9  *
10  * or in the "license" file accompanying this file. This file is distributed
11  * on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either
12  * express or implied. See the License for the specific language governing
13  * permissions and limitations under the License.
14  */
15 #ifndef ACSDK_SAMPLE_ENDPOINT_ENDPOINTINPUTCONTROLLERHANDLER_H_
16 #define ACSDK_SAMPLE_ENDPOINT_ENDPOINTINPUTCONTROLLERHANDLER_H_
17 
18 #include <memory>
19 #include <string>
20 #include <vector>
21 
23 
25 
26 namespace alexaClientSDK {
27 namespace sampleApplications {
28 namespace common {
29 
34 public:
42  static std::shared_ptr<EndpointInputControllerHandler> create(const std::string& endpointName);
43 
47  InputControllerInterface::Response setInput(alexaInputControllerInterfaces::Input input) override;
49  bool addObserver(
50  const std::weak_ptr<alexaInputControllerInterfaces::InputControllerObserverInterface> observer) override;
51  void removeObserver(
52  const std::weak_ptr<alexaInputControllerInterfaces::InputControllerObserverInterface> observer) override;
54 
55 private:
60  EndpointInputControllerHandler(const std::string& endpointName);
61 
63  std::mutex m_mutex;
64 
66  std::string m_endpointName;
67 
70 
73 
76 };
77 
78 } // namespace common
79 } // namespace sampleApplications
80 } // namespace alexaClientSDK
81 
82 #endif // ACSDK_SAMPLE_ENDPOINT_ENDPOINTINPUTCONTROLLERHANDLER_H_
std::vector< std::pair< Input, std::unordered_set< std::string > >> SupportedInputs
Definition: InputControllerInterface.h:88
::std::string string
Definition: gtest-port.h:1097
bool addObserver(const std::weak_ptr< alexaInputControllerInterfaces::InputControllerObserverInterface > observer) override
Generic implementation of NotifierInterface.
Definition: Notifier.h:38
alexaInputControllerInterfaces::Input getInput() override
Definition: common.py:1
Whether or not curl logs should be emitted.
Definition: AVSConnectionManager.h:36
void removeObserver(const std::weak_ptr< alexaInputControllerInterfaces::InputControllerObserverInterface > observer) override
InputControllerInterface::Response setInput(alexaInputControllerInterfaces::Input input) override
static std::shared_ptr< EndpointInputControllerHandler > create(const std::string &endpointName)

AlexaClientSDK 3.0.0 - Copyright 2016-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. Licensed under the Apache License, Version 2.0