• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 /*
2  * Copyright (c) 2024 Huawei Device Co., Ltd.
3  * Licensed under the Apache License, Version 2.0 (the "License");
4  * you may not use this file except in compliance with the License.
5  * You may obtain a copy of the License at
6  *
7  *     http://www.apache.org/licenses/LICENSE-2.0
8  *
9  * Unless required by applicable law or agreed to in writing, software
10  * distributed under the License is distributed on an "AS IS" BASIS,
11  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12  * See the License for the specific language governing permissions and
13  * limitations under the License.
14  */
15 #include "trigger_callback_message.h"
16 #include "intell_voice_log.h"
17 
18 #define LOG_TAG "TriggerCallback"
19 namespace OHOS {
20 namespace IntellVoiceTrigger {
21 std::map<TriggerCbMessageId, TriggerCallbackMessage::Func> TriggerCallbackMessage::g_triggerFuncMap;
22 
RegisterFunc(TriggerCbMessageId id,Func func)23 void TriggerCallbackMessage::RegisterFunc(TriggerCbMessageId id, Func func)
24 {
25     g_triggerFuncMap[id] = func;
26 }
27 
CallFunc(TriggerCbMessageId id)28 void TriggerCallbackMessage::CallFunc(TriggerCbMessageId id)
29 {
30     if ((g_triggerFuncMap.count(id) != 0) && (g_triggerFuncMap[id] != nullptr)) {
31         g_triggerFuncMap[id]();
32     } else {
33         INTELL_VOICE_LOG_ERROR("failed to find trigger function with id: %{public}d", static_cast<int>(id));
34     }
35 }
36 }  // namespace IntellVoicetrigger
37 }  // namespace OHOS
38