avs-device-sdk/Integration/src/TestSpeechSynthesizerObserv...

63 lines
2.1 KiB
C++
Raw Normal View History

/*
* TestSpeechSynthesizerObserver.cpp
*
* Copyright 2017 Amazon.com, Inc. or its affiliates. All Rights Reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License").
* You may not use this file except in compliance with the License.
* A copy of the License is located at
*
* http://aws.amazon.com/apache2.0/
*
* or in the "license" file accompanying this file. This file is distributed
* on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either
* express or implied. See the License for the specific language governing
* permissions and limitations under the License.
*/
#include "Integration/TestSpeechSynthesizerObserver.h"
namespace alexaClientSDK {
namespace integration {
namespace test {
using avsCommon::sdkInterfaces::SpeechSynthesizerObserver;
TestSpeechSynthesizerObserver::TestSpeechSynthesizerObserver():
m_state(SpeechSynthesizerObserver::SpeechSynthesizerState::FINISHED) {
}
void TestSpeechSynthesizerObserver::onStateChanged(SpeechSynthesizerObserver::SpeechSynthesizerState state) {
std::unique_lock<std::mutex> lock(m_mutex);
m_state = state;
m_queue.push_back(state);
m_wakeTrigger.notify_all();
}
bool TestSpeechSynthesizerObserver::checkState(
const SpeechSynthesizerObserver::SpeechSynthesizerState expectedState, const std::chrono::seconds duration) {
// Pull the front of the state queue
SpeechSynthesizerObserver::SpeechSynthesizerState hold = waitForNext(duration);
return hold == expectedState;
}
SpeechSynthesizerObserver::SpeechSynthesizerState TestSpeechSynthesizerObserver::waitForNext (
const std::chrono::seconds duration) {
SpeechSynthesizerObserver::SpeechSynthesizerState ret;
std::unique_lock<std::mutex> lock(m_mutex);
if (!m_wakeTrigger.wait_for(lock, duration, [this]() { return !m_queue.empty(); })) {
return m_state;
}
ret = m_queue.front();
m_queue.pop_front();
return ret;
}
SpeechSynthesizerObserver::SpeechSynthesizerState TestSpeechSynthesizerObserver::getCurrentState() {
return m_state;
}
} // namespace test
} // namespace integration
} // namespace alexaClientSDK