AlexaClientSDK  3.0.0
A cross-platform, modular SDK for interacting with the Alexa Voice Service
EndpointAlexaPlaybackControllerHandler.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 
16 #ifndef ACSDK_SAMPLE_ENDPOINT_ENDPOINTALEXAPLAYBACKCONTROLLERHANDLER_H_
17 #define ACSDK_SAMPLE_ENDPOINT_ENDPOINTALEXAPLAYBACKCONTROLLERHANDLER_H_
18 
19 #include <memory>
20 #include <mutex>
21 #include <set>
22 #include <string>
23 
30 
31 namespace alexaClientSDK {
32 namespace sampleApplications {
33 namespace common {
34 
41 public:
49  static std::shared_ptr<EndpointAlexaPlaybackControllerHandler> create(
50  const std::string& endpointName,
51  std::shared_ptr<EndpointFocusAdapter> focusAdapter);
52 
64  bool addObserver(
65  const std::weak_ptr<acsdkAlexaPlaybackControllerInterfaces::AlexaPlaybackControllerObserverInterface>& observer)
66  override;
67  void removeObserver(
68  const std::weak_ptr<acsdkAlexaPlaybackControllerInterfaces::AlexaPlaybackControllerObserverInterface>& observer)
69  override;
70  std::set<acsdkAlexaPlaybackControllerInterfaces::PlaybackOperation> getSupportedOperations() override;
72 
73 private:
77 
84  const std::string& endpointName,
85  std::shared_ptr<EndpointFocusAdapter> focusAdapter);
86 
92  void notifyObservers(acsdkAlexaPlaybackControllerInterfaces::PlaybackState playbackState);
93 
101  static void logOperation(const std::string& endpointName, const std::string& playbackOperation);
102 
104  std::mutex m_mutex;
105 
107  std::string m_endpointName;
108 
110  std::shared_ptr<AlexaPlaybackControllerNotifier> m_notifier;
111 
114 
116  std::shared_ptr<EndpointFocusAdapter> m_focusAdapter;
117 };
118 
119 } // namespace common
120 } // namespace sampleApplications
121 } // namespace alexaClientSDK
122 
123 #endif // ACSDK_SAMPLE_ENDPOINT_ENDPOINTALEXAPLAYBACKCONTROLLERHANDLER_H_
acsdkAlexaPlaybackControllerInterfaces::AlexaPlaybackControllerInterface::Response startOver() override
std::set< acsdkAlexaPlaybackControllerInterfaces::PlaybackOperation > getSupportedOperations() override
Definition: EndpointAlexaPlaybackControllerHandler.h:39
acsdkAlexaPlaybackControllerInterfaces::AlexaPlaybackControllerInterface::Response previous() override
void removeObserver(const std::weak_ptr< acsdkAlexaPlaybackControllerInterfaces::AlexaPlaybackControllerObserverInterface > &observer) override
acsdkAlexaPlaybackControllerInterfaces::PlaybackState getPlaybackState() override
::std::string string
Definition: gtest-port.h:1097
acsdkAlexaPlaybackControllerInterfaces::AlexaPlaybackControllerInterface::Response pause() override
acsdkAlexaPlaybackControllerInterfaces::AlexaPlaybackControllerInterface::Response rewind() override
acsdkAlexaPlaybackControllerInterfaces::AlexaPlaybackControllerInterface::Response next() override
Generic implementation of NotifierInterface.
Definition: Notifier.h:38
acsdkAlexaPlaybackControllerInterfaces::AlexaPlaybackControllerInterface::Response play() override
Definition: common.py:1
Whether or not curl logs should be emitted.
Definition: AVSConnectionManager.h:36
acsdkAlexaPlaybackControllerInterfaces::AlexaPlaybackControllerInterface::Response fastForward() override
static std::shared_ptr< EndpointAlexaPlaybackControllerHandler > create(const std::string &endpointName, std::shared_ptr< EndpointFocusAdapter > focusAdapter)
acsdkAlexaPlaybackControllerInterfaces::AlexaPlaybackControllerInterface::Response stop() override
bool addObserver(const std::weak_ptr< acsdkAlexaPlaybackControllerInterfaces::AlexaPlaybackControllerObserverInterface > &observer) override

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