Merge branch 'tizen_5.5' into tizen
[platform/core/uifw/multi-assistant-service.git] / src / service_main.cpp
1 /*
2  * Copyright 2020 Samsung Electronics Co., Ltd
3  *
4  * Licensed under the Flora License, Version 1.1 (the License);
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at
7  *
8  * http://floralicense.org/license/
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an AS IS BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  */
16
17 #include <tizen.h>
18 #include <service_app.h>
19 #include <app_manager.h>
20 #include <app.h>
21 #include <malloc.h>
22 #include <Ecore.h>
23 #include <vconf.h>
24
25 #include <stdio.h>
26 #include <stdlib.h>
27 #include <string.h>
28 #include <glib.h>
29
30 #include "service_common.h"
31 #include "service_main.h"
32 #include "service_plugin.h"
33 #include "service_ipc_dbus.h"
34 #include "service_config.h"
35
36 static CServiceMain* g_service_main = nullptr;
37
38 bool CServiceMain::check_preprocessing_assistant_exists()
39 {
40         bool ret = false;
41
42         boost::optional<std::string> preprocessing_appid =
43                 mPreferenceManager.get_string(WAKEUP_SETTINGS_KEY_PREPROCESSING_ASSISTANT_APPID);
44         if (preprocessing_appid) {
45                 for (int loop = 0; loop < MAX_MACLIENT_INFO_NUM; loop++) {
46                         if (mClientInfo[loop].used &&
47                                 strncmp((*preprocessing_appid).c_str(), mClientInfo[loop].appid, MAX_APPID_LEN) == 0) {
48                                 if (mClientManager.check_client_validity_by_appid(*preprocessing_appid)) {
49                                         ret = true;
50                                 }
51                         }
52                 }
53         }
54
55         MAS_LOGD("result : %d", ret);
56
57         return ret;
58 }
59
60 bool CServiceMain::is_current_preprocessing_assistant(const char* appid)
61 {
62         if (NULL == appid) return false;
63
64         bool ret = false;
65
66         boost::optional<std::string> preprocessing_appid =
67                 mPreferenceManager.get_string(WAKEUP_SETTINGS_KEY_PREPROCESSING_ASSISTANT_APPID);
68         if (preprocessing_appid) {
69                 if (strncmp((*preprocessing_appid).c_str(), appid, MAX_APPID_LEN) == 0) {
70                         ret = true;
71                 }
72         }
73
74         return ret;
75 }
76
77 int CServiceMain::client_get_audio_format(pid_t pid, int* rate, int* channel, int* audio_type)
78 {
79         MAS_LOGD("[Enter] pid(%d)", pid);
80
81         int ret = mServicePlugin.get_recording_audio_format(rate, channel, audio_type);
82         if (0 != ret){
83                 MAS_LOGE("[ERROR] Fail to get recording audio format, ret(%d)", ret);
84         }
85
86         return ret;
87 }
88
89 #define MAX_LOCAL_VARIABLE_STRING_LEN 256
90 int CServiceMain::client_get_audio_source_type(pid_t pid, char** type)
91 {
92         MAS_LOGD("[Enter] pid(%d)", pid);
93
94         if (NULL == type) return -1;
95
96         static char cached[MAX_LOCAL_VARIABLE_STRING_LEN] = {'\0'};
97         int ret = mServicePlugin.get_recording_audio_source_type(type);
98         if (0 != ret){
99                 MAS_LOGE("[ERROR] Fail to get recording audio source type, ret(%d)", ret);
100                 *type = cached;
101         } else if (*type) {
102                 strncpy(cached, *type, MAX_LOCAL_VARIABLE_STRING_LEN - 1);
103                 cached[MAX_LOCAL_VARIABLE_STRING_LEN - 1] = '\0';
104         }
105
106         return ret;
107 }
108
109 int CServiceMain::client_send_preprocessing_information(pid_t pid)
110 {
111         int ret = -1;
112         MAS_LOGD("[Enter] pid(%d)", pid);
113
114         boost::optional<std::string> preprocessing_appid =
115                 mPreferenceManager.get_string(WAKEUP_SETTINGS_KEY_PREPROCESSING_ASSISTANT_APPID);
116         if (preprocessing_appid) {
117                 MAS_LOGD("preprocessing_assistant_appid : %s", (*preprocessing_appid).c_str());
118                 ret = mServiceIpc.send_preprocessing_information(pid, (*preprocessing_appid).c_str());
119         }
120
121         return ret;
122 }
123
124 int CServiceMain::client_send_voice_key_status_change(pid_t pid, ma_voice_key_status_e status)
125 {
126         int ret = -1;
127         MAS_LOGD("[Enter] pid(%d)", pid);
128
129         ret = mServiceIpc.change_voice_key_status(pid, status);
130         if (0 != ret) {
131                 MAS_LOGE("[ERROR] Fail to send voice key status changed information, ret(%d)", ret);
132         }
133         mLastVoiceKeyStatus = status;
134
135         return ret;
136 }
137
138 int CServiceMain::client_send_asr_result(pid_t pid, int event, const char* asr_result)
139 {
140         MAS_LOGD("[Enter] pid(%d), event(%d), asr_result(%s)", pid, event, asr_result);
141         int ret = mServiceIpc.masc_ui_dbus_send_asr_result(pid, event, asr_result);
142         if (0 != ret){
143                 MAS_LOGE("[ERROR] Fail to send asr result, ret(%d)", ret);
144         }
145
146         // if final event is , launch assistant app which is invoked with wakeup word.
147         /* TO_DO */
148         return ret;
149 }
150
151 int CServiceMain::client_send_result(pid_t pid, const char* display_text,
152         const char* utterance_text, const char* result_json)
153 {
154         MAS_LOGD("[Enter] pid(%d), display_text(%s), utterance_text(%s), result_json(%s)", pid, display_text, utterance_text, result_json);
155         int ret = mServiceIpc.masc_ui_dbus_send_result(pid, display_text, utterance_text, result_json);
156         if (0 != ret){
157                 MAS_LOGE("[ERROR] Fail to send result, ret(%d)", ret);
158         }
159
160         std::string pid_appid;
161         boost::optional<std::string> appid_by_pid = mApplicationManager.get_appid_by_pid(pid);
162         if (appid_by_pid) {
163                 pid_appid = *appid_by_pid;
164         }
165         mServicePlugin.update_recognition_result(pid_appid.c_str(), MA_RECOGNITION_RESULT_EVENT_SUCCESS);
166
167         return ret;
168 }
169
170 int CServiceMain::client_send_recognition_result(pid_t pid, int result)
171 {
172         MAS_LOGD("[Enter] pid(%d), result(%d)", pid, result);
173         int ret = mServiceIpc.masc_ui_dbus_send_recognition_result(pid, result);
174         if (0 != ret){
175                 MAS_LOGE("[ERROR] Fail to send recognition result, ret(%d)", ret);
176         }
177
178         std::string pid_appid;
179         boost::optional<std::string> appid_by_pid = mApplicationManager.get_appid_by_pid(pid);
180         if (appid_by_pid) {
181                 pid_appid = *appid_by_pid;
182         }
183         mServicePlugin.update_recognition_result(pid_appid.c_str(), result);
184
185         return ret;
186 }
187
188 int CServiceMain::client_start_streaming_audio_data(pid_t pid, int type)
189 {
190         int ret = -1;
191         switch(type) {
192                 case MA_AUDIO_STREAMING_DATA_TYPE_CURRENT_UTTERANCE:
193                         ret = mServicePlugin.start_streaming_utterance_data();
194                         process_preprocessing_state_event(PREPROCESSING_STATE_EVENT_UTTERANCE_STREAMING_STARTED);
195                         break;
196                 case MA_AUDIO_STREAMING_DATA_TYPE_PREVIOUS_UTTERANCE:
197                         ret = mServicePlugin.start_streaming_previous_utterance_data();
198                         /* Preprocessing is not required for previous utterance streaming */
199                         break;
200                 case MA_AUDIO_STREAMING_DATA_TYPE_FOLLOW_UP_SPEECH:
201                         ret = mServicePlugin.start_streaming_follow_up_data();
202                         process_preprocessing_state_event(PREPROCESSING_STATE_EVENT_FOLLOW_UP_STREAMING_STARTED);
203                         break;
204         }
205         return ret;
206 }
207
208 int CServiceMain::client_stop_streaming_audio_data(pid_t pid, int type)
209 {
210         int ret = -1;
211         switch(type) {
212                 case MA_AUDIO_STREAMING_DATA_TYPE_CURRENT_UTTERANCE:
213                         ret = mServicePlugin.stop_streaming_utterance_data();
214                         break;
215                 case MA_AUDIO_STREAMING_DATA_TYPE_PREVIOUS_UTTERANCE:
216                         ret = mServicePlugin.stop_streaming_previous_utterance_data();
217                         break;
218                 case MA_AUDIO_STREAMING_DATA_TYPE_FOLLOW_UP_SPEECH:
219                         ret = mServicePlugin.stop_streaming_follow_up_data();
220                         break;
221         }
222         return ret;
223 }
224
225 int CServiceMain::client_update_voice_feedback_state(pid_t pid, int state)
226 {
227         std::string pid_appid;
228         boost::optional<std::string> appid_by_pid = mApplicationManager.get_appid_by_pid(pid);
229         if (appid_by_pid) {
230                 pid_appid = *appid_by_pid;
231         }
232         mServicePlugin.update_voice_feedback_state(pid_appid.c_str(), state);
233         return 0;
234 }
235
236 int CServiceMain::client_set_assistant_specific_command(pid_t pid, const char *command)
237 {
238         std::string pid_appid;
239         boost::optional<std::string> appid_by_pid = mApplicationManager.get_appid_by_pid(pid);
240         if (appid_by_pid) {
241                 pid_appid = *appid_by_pid;
242         }
243         mServicePlugin.set_assistant_specific_command(pid_appid.c_str(), command);
244         return 0;
245 }
246
247 int CServiceMain::client_set_background_volume(pid_t pid, double ratio)
248 {
249         std::string pid_appid;
250         boost::optional<std::string> appid_by_pid = mApplicationManager.get_appid_by_pid(pid);
251         if (appid_by_pid) {
252                 pid_appid = *appid_by_pid;
253         }
254         mServicePlugin.set_background_volume(pid_appid.c_str(), ratio);
255         return 0;
256 }
257
258 int CServiceMain::client_set_preprocessing_allow_mode(pid_t pid, ma_preprocessing_allow_mode_e mode, const char* appid)
259 {
260         std::string pid_appid;
261         boost::optional<std::string> appid_by_pid = mApplicationManager.get_appid_by_pid(pid);
262         if (appid_by_pid) {
263                 pid_appid = *appid_by_pid;
264         }
265
266         for (int loop = 0; loop < MAX_MACLIENT_INFO_NUM; loop++) {
267                 if (mClientInfo[loop].used) {
268                         if (0 == pid_appid.compare(mClientInfo[loop].appid)) {
269                                 mClientInfo[loop].preprocessing_allow_mode = mode;
270                                 if (appid) {
271                                         strncpy(mClientInfo[loop].preprocessing_allow_appid, appid, MAX_APPID_LEN);
272                                         mClientInfo[loop].preprocessing_allow_appid[MAX_APPID_LEN - 1] = '\0';
273                                 } else {
274                                         mClientInfo[loop].preprocessing_allow_appid[0] = '\0';
275                                 }
276                         }
277                 }
278         }
279
280         process_preprocessing_state_event(PREPROCESSING_STATE_EVENT_PREPROCESSING_ALLOW_MODE_CHANGED);
281
282         return 0;
283 }
284
285 int CServiceMain::client_send_preprocessing_result(pid_t pid, bool result)
286 {
287         std::string pid_appid;
288         boost::optional<std::string> appid_by_pid = mApplicationManager.get_appid_by_pid(pid);
289         if (appid_by_pid) {
290                 pid_appid = *appid_by_pid;
291         }
292         if (!is_current_preprocessing_assistant(pid_appid.c_str())) return -1;
293
294         const char *current_maclient_appid = NULL;
295         if (mCurrentClientInfo >= 0 && mCurrentClientInfo < MAX_MACLIENT_INFO_NUM) {
296                 current_maclient_appid = mClientInfo[mCurrentClientInfo].appid;
297         }
298
299         if (result) {
300                 MAS_LOGD("Preprocessing succeeded, bring (%s) to foreground", pid_appid.c_str());
301                 process_preprocessing_state_event(PREPROCESSING_STATE_EVENT_PREPROCESSING_SUCCEEDED);
302         } else {
303                 MAS_LOGD("Preprocessing failed, bring (%s) to foreground", current_maclient_appid);
304                 process_preprocessing_state_event(PREPROCESSING_STATE_EVENT_PREPROCESSING_FAILED);
305         }
306
307         if (current_maclient_appid) {
308                 pid_t pid_by_appid = mClientManager.find_client_pid_by_appid(
309                         std::string{current_maclient_appid});
310                 mServiceIpc.send_preprocessing_result(pid_by_appid, result);
311         }
312
313         return 0;
314 }
315
316 int CServiceMain::client_set_wake_word_audio_require_flag(pid_t pid, bool require)
317 {
318         std::string pid_appid;
319         boost::optional<std::string> appid_by_pid = mApplicationManager.get_appid_by_pid(pid);
320         if (appid_by_pid) {
321                 pid_appid = *appid_by_pid;
322         }
323
324         mServicePlugin.set_wake_word_audio_require_flag(pid_appid.c_str(), require);
325         return 0;
326 }
327
328 int CServiceMain::client_set_assistant_language(pid_t pid, const char* language)
329 {
330         std::string pid_appid;
331         boost::optional<std::string> appid_by_pid = mApplicationManager.get_appid_by_pid(pid);
332         if (appid_by_pid) {
333                 pid_appid = *appid_by_pid;
334         }
335
336         mServicePlugin.set_assistant_language(pid_appid.c_str(), language);
337         return 0;
338 }
339
340 int CServiceMain::client_add_wake_word(pid_t pid, const char* wake_word, const char* language)
341 {
342         std::string pid_appid;
343         boost::optional<std::string> appid_by_pid = mApplicationManager.get_appid_by_pid(pid);
344         if (appid_by_pid) {
345                 pid_appid = *appid_by_pid;
346         }
347
348         for (int loop = 0; loop < MAX_MACLIENT_INFO_NUM; loop++) {
349                 if (mClientInfo[loop].used &&
350                         0 == pid_appid.compare(mClientInfo[loop].appid)) {
351                         int ret = mServiceConfig.add_custom_wake_word(wake_word, language,
352                                 mClientInfo[loop].wakeup_word,
353                                 mClientInfo[loop].wakeup_language);
354                         if (0 == ret) {
355                                 mServiceConfig.save_custom_wake_words(pid_appid.c_str(),
356                                         mClientInfo[loop].wakeup_word,
357                                         mClientInfo[loop].wakeup_language);
358                         } else {
359                                 LOGE("add new wake word failed!");
360                                 return -1;
361                         }
362                 }
363         }
364
365         mServicePlugin.add_assistant_wakeup_word(pid_appid.c_str(), wake_word, language);
366         return 0;
367 }
368
369 int CServiceMain::client_remove_wake_word(pid_t pid, const char* wake_word, const char* language)
370 {
371         std::string pid_appid;
372         boost::optional<std::string> appid_by_pid = mApplicationManager.get_appid_by_pid(pid);
373         if (appid_by_pid) {
374                 pid_appid = *appid_by_pid;
375         }
376
377         for (int loop = 0; loop < MAX_MACLIENT_INFO_NUM; loop++) {
378                 if (mClientInfo[loop].used &&
379                         0 == pid_appid.compare(mClientInfo[loop].appid)) {
380                         int ret = mServiceConfig.remove_custom_wake_word(wake_word, language,
381                                 mClientInfo[loop].wakeup_word,
382                                 mClientInfo[loop].wakeup_language);
383                         if (0 == ret) {
384                                 mServiceConfig.save_custom_wake_words(pid_appid.c_str(),
385                                         mClientInfo[loop].wakeup_word,
386                                         mClientInfo[loop].wakeup_language);
387                         }
388                 }
389         }
390
391         mServicePlugin.remove_assistant_wakeup_word(pid_appid.c_str(), wake_word, language);
392         return 0;
393 }
394
395 int CServiceMain::ui_client_initialize(pid_t pid)
396 {
397         MAS_LOGD("[Enter] pid(%d)", pid);
398
399         return 0;
400 }
401
402 int CServiceMain::ui_client_deinitialize(pid_t pid)
403 {
404         MAS_LOGD("[Enter] pid(%d)", pid);
405
406         return 0;
407 }
408
409 int CServiceMain::ui_client_change_assistant(const char* appid)
410 {
411         MAS_LOGD("[Enter]");
412
413         if (NULL == appid) {
414                 MAS_LOGE("NULL parameter");
415                 return -1;
416         }
417
418         bool use_custom_ui = get_client_custom_ui_option_by_appid(appid);
419         mServiceIpc.masc_ui_dbus_enable_common_ui(!use_custom_ui);
420
421         set_current_client_by_appid(appid);
422         pid_t pid = get_client_pid_by_appid(appid);
423         if (pid != -1) {
424                 bring_client_to_foreground(appid);
425                 client_send_preprocessing_information(pid);
426                 if (MA_VOICE_KEY_STATUS_PRESSED == mLastVoiceKeyStatus) {
427                         client_send_voice_key_status_change(pid, mLastVoiceKeyStatus);
428                 }
429
430                 mServiceIpc.change_active_state(pid, MA_ACTIVE_STATE_ACTIVE);
431                 MAS_LOGD("MA Client with appid %s exists, requesting speech data", (appid ? appid : "NULL"));
432                 /*
433                 int ret = mServicePlugin.start_streaming_utterance_data();
434                 if (0 != ret) {
435                         MAS_LOGE("[ERROR] Fail to start streaming utterance data(%d)", ret);
436                 }
437                 */
438         } else {
439                 // Appropriate MA Client not available, trying to launch new one
440                 MAS_LOGD("MA Client with appid %s does not exist, launching client", (appid ? appid : "NULL"));
441
442                 /* The appid parameter might not exist after this function call, so we use appid string in our mClientInfo */
443                 for (int loop = 0; loop < MAX_MACLIENT_INFO_NUM; loop++) {
444                         if (mClientInfo[loop].used &&
445                                 0 < strlen(mClientInfo[loop].appid) &&
446                                 0 < strlen(mClientInfo[loop].wakeup_word[0])) {
447                                 if (strncmp(appid, mClientInfo[loop].appid, MAX_APPID_LEN) == 0) {
448                                         launch_client_by_appid(mClientInfo[loop].appid, CLIENT_LAUNCH_MODE_ACTIVATION);
449                                 }
450                         }
451                 }
452         }
453
454         return 0;
455 }
456
457 static int assistant_info_cb(ma_assistant_info_s* info, void* user_data) {
458         int ret = -1;
459         CServiceMain* service_main = static_cast<CServiceMain*>(user_data);
460         if (service_main) {
461                 ret = service_main->add_assistant_info(info);
462         }
463         return ret;
464 }
465
466 int CServiceMain::add_assistant_info(ma_assistant_info_s* info) {
467         MAS_LOGD("__assistant_info_cb called");
468
469         if (NULL == info) {
470                 MAS_LOGE("info NULL, returning");
471                 return -1;
472         }
473         if (NULL == info->app_id) {
474                 MAS_LOGE("app_id NULL, returning");
475                 return -1;
476         }
477
478         int index = -1;
479         int loop = 0;
480         while(-1 == index && loop < MAX_MACLIENT_INFO_NUM) {
481                 if (false == mClientInfo[loop].used) {
482                         index = loop;
483                 }
484                 loop++;
485         }
486         if (-1 != index) {
487                 mClientInfo[index].used = true;
488                 mClientInfo[index].preprocessing_allow_mode = MA_PREPROCESSING_ALLOW_NONE;
489                 mClientInfo[index].preprocessing_allow_appid[0] = '\0';
490                 MAS_LOGD("app_id(%s)", info->app_id);
491                 strncpy(mClientInfo[index].appid, info->app_id, MAX_APPID_LEN);
492                 mClientInfo[index].appid[MAX_APPID_LEN - 1] = '\0';
493
494                 if (is_current_preprocessing_assistant(mClientInfo[index].appid)) {
495                         mCurrentPreprocessingClientInfo = index;
496                 }
497
498                 for (loop = 0;loop < MAX_WAKEUP_WORDS_NUM;loop++) {
499                         if (loop < info->cnt_wakeup && info->wakeup_list[loop]) {
500                                 MAS_LOGD("wakeup_list(%d)(%s)(%s)", loop, info->wakeup_list[loop], info->wakeup_language[loop]);
501                                 strncpy(mClientInfo[index].wakeup_word[loop], info->wakeup_list[loop], MAX_WAKEUP_WORD_LEN);
502                                 mClientInfo[index].wakeup_word[loop][MAX_WAKEUP_WORD_LEN - 1] = '\0';
503                                 if (info->wakeup_language[loop]) {
504                                         strncpy(mClientInfo[index].wakeup_language[loop], info->wakeup_language[loop], MAX_SUPPORTED_LANGUAGE_LEN);
505                                         mClientInfo[index].wakeup_language[loop][MAX_SUPPORTED_LANGUAGE_LEN - 1] = '\0';
506                                 } else {
507                                         strncpy(mClientInfo[index].wakeup_language[loop], "", MAX_SUPPORTED_LANGUAGE_LEN);
508                                 }
509                         } else {
510                                 strncpy(mClientInfo[index].wakeup_word[loop], "", MAX_WAKEUP_WORD_LEN);
511                         }
512                 }
513
514                 for (loop = 0;loop < MAX_SUPPORTED_LANGUAGES_NUM;loop++) {
515                         if (loop < info->cnt_lang && info->supported_lang[loop]) {
516                                 MAS_LOGD("supported_lang(%d)(%s)", loop, info->supported_lang[loop]);
517                                 strncpy(mClientInfo[index].supported_language[loop], info->supported_lang[loop], MAX_SUPPORTED_LANGUAGE_LEN);
518                                 mClientInfo[index].supported_language[loop][MAX_SUPPORTED_LANGUAGE_LEN - 1] = '\0';
519                         } else {
520                                 strncpy(mClientInfo[index].supported_language[loop], "", MAX_SUPPORTED_LANGUAGE_LEN);
521                         }
522                 }
523
524                 MAS_LOGD("wakeup_engine(%s)", info->wakeup_engine);
525                 if (info->wakeup_engine) {
526                         strncpy(mClientInfo[index].wakeup_engine, info->wakeup_engine, MAX_APPID_LEN);
527                         mClientInfo[index].wakeup_engine[MAX_APPID_LEN - 1] = '\0';
528                 } else {
529                         mClientInfo[index].wakeup_engine[0] = '\0';
530                         MAS_LOGW("Wakeup engine information not provided for : %s", info->app_id);
531                 }
532                 mClientInfo[index].custom_ui_option = info->custom_ui_option;
533
534                 MAS_LOGD("voice_key_support_mode(%d)", info->voice_key_support_mode);
535                 mClientInfo[index].voice_key_support_mode = info->voice_key_support_mode;
536                 MAS_LOGD("voice_key_tap_duration(%f)", info->voice_key_tap_duration);
537                 mClientInfo[index].voice_key_tap_duration = info->voice_key_tap_duration;
538                 MAS_LOGD("audio_processing_appid(%s)",
539                         (info->audio_data_processing_appid ? (info->audio_data_processing_appid)->c_str() : "[NONE]"));
540                 mClientInfo[index].audio_processing_appid = info->audio_data_processing_appid;
541         } else {
542                 MAS_LOGD("Couldn't find an empty slot for storing assistant info");
543         }
544
545         MAS_LOGD("__assistant_info_cb end");
546
547         return 0;
548 }
549
550 static void active_state_changed_cb(std::string key, void* user_data)
551 {
552         IPreferenceManager* manager = static_cast<IPreferenceManager*>(user_data);
553         if (nullptr == manager) return;
554
555         boost::optional<bool> activated =
556                 manager->get_bool(MULTI_ASSISTANT_SETTINGS_ACTIVATED);
557         if (activated) {
558                 MAS_LOGD("multi-assistant active state : %d\n", *activated);
559
560                 CServicePlugin *plugin = nullptr;
561                 if (g_service_main) {
562                         plugin = g_service_main->get_service_plugin();
563                 }
564                 if (plugin) {
565                         if (*activated) {
566                                 plugin->activate();
567                         } else {
568                                 plugin->deactivate();
569                         }
570                 } else {
571                         MAS_LOGE("Could not change plugin state : %p %p", g_service_main, plugin);
572                 }
573         }
574 }
575
576 int CServiceMain::initialize_service_plugin(void)
577 {
578         MAS_LOGI("[ENTER]");
579         if (0 != mServicePlugin.initialize()) {
580                 MAS_LOGE("Fail to ws intialize");
581                 return -1;
582         }
583
584         if (0 != mServicePlugin.set_language(mCurrentLanguage.c_str())) {
585                 MAS_LOGE("Fail to ws set language");
586                 return -1;
587         }
588
589         memset(&mClientInfo, 0x00, sizeof(mClientInfo));
590         mCurrentClientInfo = -1;
591         mCurrentPreprocessingClientInfo = -1;
592         mWakeupClientAppId.clear();
593
594         if (0 == mServiceConfig.get_assistant_info(assistant_info_cb, this)) {
595                 for (int loop = 0; loop < MAX_MACLIENT_INFO_NUM; loop++) {
596                         int inner_loop;
597                         if (0 < strlen(mClientInfo[loop].appid)) {
598                                 mServiceConfig.load_custom_wake_words(mClientInfo[loop].appid,
599                                         mClientInfo[loop].wakeup_word, mClientInfo[loop].wakeup_language);
600                                 if (0 < strlen(mClientInfo[loop].wakeup_engine)) {
601                                         mServicePlugin.set_assistant_wakeup_engine(
602                                                 mClientInfo[loop].appid,
603                                                 mClientInfo[loop].wakeup_engine);
604                                 }
605                                 for (inner_loop = 0; inner_loop < MAX_WAKEUP_WORDS_NUM; inner_loop++) {
606                                         if (0 < strlen(mClientInfo[loop].wakeup_word[inner_loop])) {
607                                                 MAS_LOGD("Registering wakeup word %s for app %s",
608                                                         mClientInfo[loop].wakeup_word[inner_loop], mClientInfo[loop].appid);
609                                                 if (0 != mServicePlugin.add_assistant_wakeup_word(
610                                                         mClientInfo[loop].appid,
611                                                         mClientInfo[loop].wakeup_word[inner_loop],
612                                                         mClientInfo[loop].wakeup_language[inner_loop])) {
613                                                         MAS_LOGE("Fail to add assistant's wakeup word");
614                                                 }
615                                         }
616                                 }
617                                 for (inner_loop = 0; inner_loop < MAX_SUPPORTED_LANGUAGES_NUM; inner_loop++) {
618                                         if (0 < strlen(mClientInfo[loop].supported_language[inner_loop])) {
619                                                 MAS_LOGD("Adding language %s for app %s",
620                                                         mClientInfo[loop].supported_language[inner_loop], mClientInfo[loop].appid);
621                                                 if (0 != mServicePlugin.add_assistant_language(
622                                                         mClientInfo[loop].appid,
623                                                         mClientInfo[loop].supported_language[inner_loop])) {
624                                                         MAS_LOGE("Fail to add assistant's language");
625                                                 }
626                                         }
627                                 }
628                         }
629                 }
630         } else {
631                 MAS_LOGE("Fail to load assistant info");
632         }
633
634         if (0 != mServicePlugin.set_callbacks()) {
635                 MAS_LOGE("Fail to set callbacks");
636                 return -1;
637         }
638
639         return 0;
640 }
641
642 int CServiceMain::deinitialize_service_plugin(void)
643 {
644         MAS_LOGI("[ENTER]");
645         if (0 != mServicePlugin.deactivate()) {
646                 MAS_LOGE("Fail to deactivate");
647         }
648         if (0 != mServicePlugin.deinitialize()) {
649                 MAS_LOGE("Fail to deinitialize");
650         }
651         MAS_LOGI("[END]");
652         return 0;
653 }
654
655 int CServiceMain::process_activated_setting()
656 {
657         if (mPreferenceManager.register_changed_callback(
658                 MULTI_ASSISTANT_SETTINGS_ACTIVATED, active_state_changed_cb, &mPreferenceManager)) {
659                 /* Activate / deactivate according to the vconf key setting */
660                 active_state_changed_cb(std::string{}, &mPreferenceManager);
661         } else {
662 #ifdef ENABLE_MULTI_ASSISTANT_BY_DEFAULT
663                 /* Multi-assistant needs to be enabled by default, unless disabled explicitly */
664                 mServicePlugin.activate();
665                 const char *default_assistant = NULL;
666                 if (0 == mServicePlugin.get_default_assistant(&default_assistant)) {
667                         if (NULL == default_assistant) {
668                                 if (mClientInfo[0].used) {
669                                         default_assistant = mClientInfo[0].appid;
670                                         MAS_LOGW("No default assistant, setting %s as default", default_assistant);
671                                         mServicePlugin.set_default_assistant(default_assistant);
672                                 } else {
673                                         MAS_LOGE("No default assistant, and no assistant installed");
674                                 }
675                         }
676                 }
677 #endif
678         }
679         return 0;
680 }
681
682 int CServiceMain::get_current_client_pid()
683 {
684         int ret = -1;
685         if (mCurrentClientInfo >= 0 && mCurrentClientInfo < MAX_MACLIENT_INFO_NUM) {
686                 const char *appid = mClientInfo[mCurrentClientInfo].appid;
687                 if (appid) {
688                         ret = mClientManager.find_client_pid_by_appid(std::string{appid});
689                 }
690         }
691         return ret;
692 }
693
694 pid_t CServiceMain::get_current_preprocessing_client_pid()
695 {
696         pid_t ret = -1;
697         if (mCurrentPreprocessingClientInfo >= 0 && mCurrentPreprocessingClientInfo < MAX_MACLIENT_INFO_NUM) {
698                 const char *appid = mClientInfo[mCurrentPreprocessingClientInfo].appid;
699                 if (appid) {
700                         ret = mClientManager.find_client_pid_by_appid(std::string{appid});
701                 }
702         }
703         return ret;
704 }
705
706 pid_t CServiceMain::get_current_audio_processing_pid()
707 {
708         pid_t ret = -1;
709         if (mCurrentClientInfo >= 0 && mCurrentClientInfo < MAX_MACLIENT_INFO_NUM) {
710                 boost::optional<std::string> audio_processing_appid =
711                         mClientInfo[mCurrentClientInfo].audio_processing_appid;
712                 if (audio_processing_appid) {
713                         boost::optional<pid_t> audio_processing_pid;
714                         audio_processing_pid = mApplicationManager.get_pid_by_appid((*audio_processing_appid).c_str());
715                         if (audio_processing_pid) {
716                                 ret = *audio_processing_pid;
717                         }
718                 }
719         }
720         return ret;
721 }
722
723 pid_t CServiceMain::get_client_pid_by_appid(const char *appid)
724 {
725         pid_t ret = -1;
726
727         if (appid) {
728                 ret = mClientManager.find_client_pid_by_appid(std::string{appid});
729         }
730
731         if (-1 != ret && !mApplicationManager.is_application_running(ret)) {
732                 MAS_LOGE("The PID for %s was %d, but it seems to be terminated", appid, ret);
733                 on_deinitialize(ret);
734                 ret = -1;
735         }
736
737         return ret;
738 }
739
740 bool CServiceMain::get_client_custom_ui_option_by_appid(const char *appid)
741 {
742         bool ret = false;
743         for (int loop = 0; loop < MAX_MACLIENT_INFO_NUM; loop++) {
744                 if (mClientInfo[loop].used &&
745                         0 < strlen(mClientInfo[loop].appid) &&
746                         0 < strlen(mClientInfo[loop].wakeup_word[0])) {
747                         if (strncmp(appid, mClientInfo[loop].appid, MAX_APPID_LEN) == 0) {
748                                 ret = mClientInfo[loop].custom_ui_option;
749                         }
750                 }
751         }
752         return ret;
753 }
754
755 int CServiceMain::get_client_pid_by_wakeup_word(const char *wakeup_word)
756 {
757         const char *appid = get_client_appid_by_wakeup_word(wakeup_word);
758         return get_client_pid_by_appid(appid);
759 }
760
761 const char* CServiceMain::get_client_appid_by_wakeup_word(const char *wakeup_word)
762 {
763         int loop;
764         const char *appid = NULL;
765
766         if (NULL == wakeup_word) return NULL;
767
768         for (loop = 0; loop < MAX_MACLIENT_INFO_NUM && NULL == appid; loop++) {
769                 if (mClientInfo[loop].used &&
770                         0 < strlen(mClientInfo[loop].appid)) {
771                         for (int inner_loop = 0; inner_loop < MAX_WAKEUP_WORDS_NUM; inner_loop++) {
772                                 if (0 < strlen(mClientInfo[loop].wakeup_word[inner_loop])) {
773                                         if (0 == strncmp(wakeup_word, mClientInfo[loop].wakeup_word[inner_loop], MAX_WAKEUP_WORD_LEN)) {
774                                                 appid = mClientInfo[loop].appid;
775                                         }
776                                 }
777                         }
778                 }
779         }
780
781         /* Perform extended search, by eliminating blank characters */
782         if (NULL == appid) {
783                 for (loop = 0; loop < MAX_MACLIENT_INFO_NUM && NULL == appid; loop++) {
784                         if (mClientInfo[loop].used &&
785                                 0 < strlen(mClientInfo[loop].appid)) {
786                                 for (int inner_loop = 0; inner_loop < MAX_WAKEUP_WORDS_NUM; inner_loop++) {
787                                         if (0 < strlen(mClientInfo[loop].wakeup_word[inner_loop])) {
788                                                 char comparand[MAX_WAKEUP_WORD_LEN];
789                                                 int comparand_index = 0;
790                                                 for (int index = 0; index < MAX_WAKEUP_WORD_LEN; index++) {
791                                                         if (' ' != mClientInfo[loop].wakeup_word[inner_loop][index]) {
792                                                                 comparand[comparand_index++] = mClientInfo[loop].wakeup_word[inner_loop][index];
793                                                         }
794                                                 }
795                                                 if (0 == strncmp(wakeup_word, comparand, MAX_WAKEUP_WORD_LEN)) {
796                                                         appid = mClientInfo[loop].appid;
797                                                 }
798                                         }
799                                 }
800                         }
801                 }
802         }
803
804         return appid;
805 }
806
807 int CServiceMain::set_current_client_by_wakeup_word(const char *wakeup_word)
808 {
809         int loop;
810         int ret = -1;
811         int prev_selection = mCurrentClientInfo;
812
813         for (loop = 0; loop < MAX_MACLIENT_INFO_NUM && -1 == ret; loop++) {
814                 if (mClientInfo[loop].used &&
815                         0 < strlen(mClientInfo[loop].appid)) {
816                         for (int inner_loop = 0; inner_loop < MAX_WAKEUP_WORDS_NUM; inner_loop++) {
817                                 if (0 < strlen(mClientInfo[loop].wakeup_word[inner_loop])) {
818                                         if (0 == strncmp(wakeup_word, mClientInfo[loop].wakeup_word[inner_loop], MAX_WAKEUP_WORD_LEN)) {
819                                                 mCurrentClientInfo = loop;
820                                                 ret = 0;
821                                         }
822                                 }
823                         }
824                 }
825         }
826         /* Perform extended search, by eliminating blank characters */
827         if (ret == -1) {
828                 for (loop = 0; loop < MAX_MACLIENT_INFO_NUM && -1 == ret; loop++) {
829                         if (mClientInfo[loop].used &&
830                                 0 < strlen(mClientInfo[loop].appid)) {
831                                 for (int inner_loop = 0; inner_loop < MAX_WAKEUP_WORDS_NUM; inner_loop++) {
832                                         if (0 < strlen(mClientInfo[loop].wakeup_word[inner_loop])) {
833                                                 char comparand[MAX_WAKEUP_WORD_LEN];
834                                                 int comparand_index = 0;
835                                                 for (int index = 0; index < MAX_WAKEUP_WORD_LEN; index++) {
836                                                         if (' ' != mClientInfo[loop].wakeup_word[inner_loop][index]) {
837                                                                 comparand[comparand_index++] = mClientInfo[loop].wakeup_word[inner_loop][index];
838                                                         }
839                                                 }
840                                                 if (0 == strncmp(wakeup_word, comparand, MAX_WAKEUP_WORD_LEN)) {
841                                                         mCurrentClientInfo = loop;
842                                                         ret = 0;
843                                                 }
844                                         }
845                                 }
846                         }
847                 }
848         }
849
850         if (mCurrentClientInfo != prev_selection) {
851                 if (prev_selection >= 0 && prev_selection < MAX_MACLIENT_INFO_NUM) {
852                         pid_t pid = get_client_pid_by_appid(mClientInfo[prev_selection].appid);
853                         mServiceIpc.change_active_state(pid, MA_ACTIVE_STATE_INACTIVE);
854                 }
855         }
856
857         return ret;
858 }
859
860 int CServiceMain::set_current_client_by_appid(const char *appid)
861 {
862         int ret = -1;
863         int prev_selection = mCurrentClientInfo;
864
865         for (int loop = 0; loop < MAX_MACLIENT_INFO_NUM; loop++) {
866                 if (mClientInfo[loop].used &&
867                         0 < strlen(mClientInfo[loop].appid) &&
868                         0 < strlen(mClientInfo[loop].wakeup_word[0])) {
869                         if (strncmp(appid, mClientInfo[loop].appid, MAX_APPID_LEN) == 0) {
870                                 mCurrentClientInfo = loop;
871                                 ret = 0;
872                         }
873                 }
874         }
875
876         if (mCurrentClientInfo != prev_selection) {
877                 if (prev_selection >= 0 && prev_selection < MAX_MACLIENT_INFO_NUM) {
878                         pid_t pid = get_client_pid_by_appid(mClientInfo[prev_selection].appid);
879                         mServiceIpc.change_active_state(pid, MA_ACTIVE_STATE_INACTIVE);
880                 }
881         }
882
883         return ret;
884 }
885
886 int CServiceMain::launch_client_by_appid(const char *appid, CLIENT_LAUNCH_MODE launch_mode)
887 {
888         int result = 0;
889
890         if (NULL == appid || 0 == strlen(appid)) {
891                 MAS_LOGE("appid invalid, failed launching MA Client");
892                 return -1;
893         }
894
895         if (CLIENT_LAUNCH_MODE_PRELAUNCH == launch_mode) {
896                 if (mApplicationManager.is_application_running(appid)) {
897                         MAS_LOGE("appid %s is already running, no need for a prelaunch", appid);
898                         return -1;
899                 }
900
901                 result = mApplicationManager.launch_app_async(appid, true);
902         } else {
903                 result = mApplicationManager.launch_app_async(appid, false);
904         }
905
906         if (CLIENT_LAUNCH_MODE_ACTIVATION == launch_mode) {
907                 bool found = false;
908                 for (int loop = 0; loop < MAX_MACLIENT_INFO_NUM; loop++) {
909                         if (mClientInfo[loop].used &&
910                                 0 < strlen(mClientInfo[loop].appid)) {
911                                 if (strncmp(appid, mClientInfo[loop].appid, MAX_APPID_LEN) == 0) {
912                                         mWakeupClientAppId = mClientInfo[loop].appid;
913                                         found = true;
914                                 }
915                         }
916                 }
917                 MAS_LOGD("mWakeupClientAppId : %s, %d", mWakeupClientAppId.c_str(), found);
918         }
919
920         return result;
921 }
922
923 int CServiceMain::bring_client_to_foreground(const char* appid)
924 {
925         int ret = 0;
926
927         if (NULL == appid || 0 == strlen(appid)) {
928                 MAS_LOGE("appid invalid, failed launching MA Client");
929                 return -1;
930         }
931
932         if (!mApplicationManager.bring_app_to_foreground(appid)) {
933                 ret = -1;
934         }
935
936         return ret;
937 }
938
939 int CServiceMain::launch_client_by_wakeup_word(const char *wakeup_word)
940 {
941         const char *appid = get_client_appid_by_wakeup_word(wakeup_word);
942         return launch_client_by_appid(appid, CLIENT_LAUNCH_MODE_ACTIVATION);
943 }
944
945 int CServiceMain::prelaunch_default_assistant()
946 {
947         /* CHECK NEEDED : should the code segment below and activation logic above be moved to wakeup manger? */
948         boost::optional<bool> prelaunch_mode =
949                 mPreferenceManager.get_bool(WAKEUP_SETTINGS_KEY_PRELAUNCH_MODE);
950         if (prelaunch_mode && *prelaunch_mode) {
951                 const char *default_assistant = NULL;
952                 if (0 == mServicePlugin.get_default_assistant(&default_assistant)) {
953                         if (!(mApplicationManager.is_application_running(default_assistant))) {
954                                 MAS_LOGD("prelaunching default_assistant_appid : %s", default_assistant);
955                                 launch_client_by_appid(default_assistant, CLIENT_LAUNCH_MODE_PRELAUNCH);
956                         }
957                 }
958         }
959         return 0;
960 }
961
962 int CServiceMain::update_voice_key_support_mode()
963 {
964         /* CHECK NEEDED : should the code segment below and activation logic above be moved to wakeup manger? */
965         bool successful = false;
966         const char *default_assistant = NULL;
967         if (0 == mServicePlugin.get_default_assistant(&default_assistant)) {
968                 for (int loop = 0; loop < MAX_MACLIENT_INFO_NUM; loop++) {
969                         if (mClientInfo[loop].used) {
970                                 if (default_assistant &&
971                                         strncmp(default_assistant, mClientInfo[loop].appid, MAX_APPID_LEN) == 0) {
972                                         float duration = mClientInfo[loop].voice_key_tap_duration;
973                                         if (0.0f < duration) {
974                                                 mServicePlugin.set_voice_key_tap_duration(duration);
975                                         } else {
976                                                 mServicePlugin.unset_voice_key_tap_duration();
977                                         }
978                                         mServicePlugin.set_voice_key_support_mode(
979                                                 mClientInfo[loop].voice_key_support_mode);
980                                         successful = true;
981                                 }
982                         }
983                 }
984         }
985
986         if (!successful) {
987                 mServicePlugin.unset_voice_key_tap_duration();
988                 mServicePlugin.set_voice_key_support_mode(VOICE_KEY_SUPPORT_MODE_NONE);
989         }
990         return 0;
991 }
992
993 ma_preprocessing_allow_mode_e CServiceMain::get_preprocessing_allow_mode(const char* appid)
994 {
995         for (int loop = 0; loop < MAX_MACLIENT_INFO_NUM; loop++) {
996                 if (appid && mClientInfo[loop].used) {
997                         if (strncmp(appid, mClientInfo[loop].appid, MAX_APPID_LEN) == 0) {
998                                 return mClientInfo[loop].preprocessing_allow_mode;
999                         }
1000                 }
1001         }
1002         return MA_PREPROCESSING_ALLOW_NONE;
1003 }
1004
1005 /* This might need to be read from settings in the future, but using macro for now */
1006 //#define BRING_PREPROCESSING_ASSISTANT_TO_FRONT
1007
1008 int CServiceMain::process_preprocessing_state_event(PREPROCESSING_STATE_EVENT event)
1009 {
1010         const char* current_maclient_appid = NULL;
1011         const char* preprocessing_allow_appid = NULL;
1012         if (mCurrentClientInfo >= 0 && mCurrentClientInfo < MAX_MACLIENT_INFO_NUM) {
1013                 current_maclient_appid = mClientInfo[mCurrentClientInfo].appid;
1014                 preprocessing_allow_appid = mClientInfo[mCurrentClientInfo].preprocessing_allow_appid;
1015         }
1016         ma_preprocessing_allow_mode_e mode = get_preprocessing_allow_mode(current_maclient_appid);
1017
1018         switch (event) {
1019                 case PREPROCESSING_STATE_EVENT_ASSISTANT_ACTIVATED:
1020                 {
1021 #ifndef BRING_PREPROCESSING_ASSISTANT_TO_FRONT
1022                         /* If there is no need to bring preprocessing assistant to front,
1023                                 current_maclient should always be brought to front */
1024                         bring_client_to_foreground(current_maclient_appid);
1025 #endif
1026                         mCurrentPreprocessingState = PREPROCESSING_STATE_WAKEUP_PREPROCESS_DISABLED;
1027                         if (check_preprocessing_assistant_exists()) {
1028                                 if (MA_PREPROCESSING_ALLOW_UTTERANCE == mode ||
1029                                         MA_PREPROCESSING_ALLOW_ALL == mode) {
1030                                         if (is_current_preprocessing_assistant(preprocessing_allow_appid)) {
1031                                                 mCurrentPreprocessingState = PREPROCESSING_STATE_WAKEUP_PREPROCESS_ENABLED;
1032                                         }
1033                                 }
1034                         } else {
1035 #ifdef BRING_PREPROCESSING_ASSISTANT_TO_FRONT
1036                                 /* If preprocessing assistant does not exist, there is no way to enable
1037                                         preprocessing assistant, so bring current maclient to front right away */
1038                                 bring_client_to_foreground(current_maclient_appid);
1039 #endif
1040                         }
1041                 }
1042                 break;
1043                 case PREPROCESSING_STATE_EVENT_PREPROCESSING_ALLOW_MODE_CHANGED:
1044                 {
1045                         mCurrentPreprocessingState = PREPROCESSING_STATE_WAKEUP_PREPROCESS_DISABLED;
1046                         /* Enable preprocessing mode only if the preprocessing assistant exists */
1047                         if (check_preprocessing_assistant_exists()) {
1048                                 if (MA_PREPROCESSING_ALLOW_UTTERANCE == mode ||
1049                                         MA_PREPROCESSING_ALLOW_ALL == mode) {
1050                                         if (is_current_preprocessing_assistant(preprocessing_allow_appid)) {
1051                                                 mCurrentPreprocessingState = PREPROCESSING_STATE_WAKEUP_PREPROCESS_ENABLED;
1052                                         }
1053                                 }
1054                         }
1055                 }
1056                 break;
1057                 case PREPROCESSING_STATE_EVENT_UTTERANCE_STREAMING_STARTED:
1058                 {
1059                         if (PREPROCESSING_STATE_WAKEUP_PREPROCESS_ENABLED == mCurrentPreprocessingState) {
1060                                 mCurrentPreprocessingState = PREPROCESSING_STATE_PREPROCESSING_UTTERANCE;
1061                         } else if (PREPROCESSING_STATE_WAKEUP_PREPROCESS_DISABLED == mCurrentPreprocessingState) {
1062                                 /* If preprocessing assistant does not exist, the current_maclient
1063                                         would have been brought to front already on wakeup event */
1064 #ifdef BRING_PREPROCESSING_ASSISTANT_TO_FRONT
1065                                 if (check_preprocessing_assistant_exists()) {
1066                                         bring_client_to_foreground(current_maclient_appid);
1067                                 }
1068 #endif
1069                                 mCurrentPreprocessingState = PREPROCESSING_STATE_NONE;
1070                         }
1071                 }
1072                 break;
1073                 case PREPROCESSING_STATE_EVENT_FOLLOW_UP_STREAMING_STARTED:
1074                 {
1075                         mCurrentPreprocessingState = PREPROCESSING_STATE_NONE;
1076                         if (check_preprocessing_assistant_exists()) {
1077                                 if (MA_PREPROCESSING_ALLOW_FOLLOW_UP == mode ||
1078                                         MA_PREPROCESSING_ALLOW_ALL == mode) {
1079                                         mCurrentPreprocessingState = PREPROCESSING_STATE_PREPROCESSING_FOLLOW_UP;
1080                                 }
1081                         }
1082                 }
1083                 break;
1084                 case PREPROCESSING_STATE_EVENT_PREPROCESSING_SUCCEEDED:
1085                 {
1086 #ifdef BRING_PREPROCESSING_ASSISTANT_TO_FRONT
1087                         if (PREPROCESSING_STATE_EVENT_UTTERANCE_STREAMING_STARTED == mCurrentPreprocessingState ||
1088                                 PREPROCESSING_STATE_EVENT_FOLLOW_UP_STREAMING_STARTED == mCurrentPreprocessingState) {
1089                                 boost::optional<std::string> preprocessing_assistant =
1090                                         mPreferenceManager.get_bool(WAKEUP_SETTINGS_KEY_PREPROCESSING_ASSISTANT_APPID);
1091                                 if (preprocessing_assistant) {
1092                                         MAS_LOGD("preprocessing_assistant_appid : %s", (*preprocessing_assistant).c_str());
1093                                         bring_client_to_foreground((*preprocessing_assistant).c_str());
1094                                 }
1095                         }
1096 #endif
1097                         mCurrentPreprocessingState = PREPROCESSING_STATE_NONE;
1098                 }
1099                 break;
1100                 case PREPROCESSING_STATE_EVENT_PREPROCESSING_FAILED:
1101                 {
1102 #ifdef BRING_PREPROCESSING_ASSISTANT_TO_FRONT
1103                         if (PREPROCESSING_STATE_EVENT_UTTERANCE_STREAMING_STARTED == mCurrentPreprocessingState ||
1104                                 PREPROCESSING_STATE_EVENT_FOLLOW_UP_STREAMING_STARTED == mCurrentPreprocessingState) {
1105                                 bring_client_to_foreground(current_maclient_appid);
1106                         }
1107 #endif
1108                         mCurrentPreprocessingState = PREPROCESSING_STATE_NONE;
1109                 }
1110                 break;
1111         }
1112         return 0;
1113 }
1114
1115 int CServiceMain::set_current_service_state(ma_service_state_e state)
1116 {
1117         mCurrentServiceState = state;
1118
1119         int count = mClientManager.get_client_num();
1120         int i;
1121
1122         for (i = 0; i < count; i++) {
1123                 pid_t pid = mClientManager.find_client_pid_by_index(i);
1124
1125                 if (-1 != pid) {
1126                         int ret = mServiceIpc.change_service_state(pid, state);
1127                         if (0 != ret) {
1128                                 MAS_LOGE("[ERROR] Fail to set service state change to %d, ret(%d)", pid, ret);
1129                         }
1130                 }
1131         }
1132         return 0;
1133 }
1134
1135 ma_service_state_e CServiceMain::get_current_service_state()
1136 {
1137         return mCurrentServiceState;
1138 }
1139
1140 bool CServiceMain::is_valid_wakeup_engine(const char* appid)
1141 {
1142         for (int loop = 0; loop < MAX_MACLIENT_INFO_NUM;loop++) {
1143                 if (mClientInfo[loop].used) {
1144                         LOGD("comparing appid : %s %s", mClientInfo[loop].wakeup_engine, appid);
1145                         if (0 == strncmp(mClientInfo[loop].wakeup_engine, appid, MAX_APPID_LEN)) {
1146                                 return true;
1147                         }
1148                 }
1149         }
1150         return false;
1151 }
1152
1153 bool CServiceMain::is_wakeup_engine(const pkgmgrinfo_appinfo_h handle)
1154 {
1155         if (nullptr == g_service_main) return false;
1156         bool is_wakeup_engine = false;
1157
1158         char *appid = NULL;
1159
1160         int ret = pkgmgrinfo_appinfo_get_appid(handle, &appid);
1161         if (PMINFO_R_OK == ret && NULL != appid) {
1162                 for (int loop = 0; loop < MAX_MACLIENT_INFO_NUM;loop++) {
1163                         if (mClientInfo[loop].used) {
1164                                 LOGD("comparing appid : %s %s", mClientInfo[loop].wakeup_engine, appid);
1165                                 if (0 == strncmp(mClientInfo[loop].wakeup_engine, appid, MAX_APPID_LEN)) {
1166                                         is_wakeup_engine = true;
1167                                 }
1168                         }
1169                 }
1170         } else {
1171                 LOGE("pkgmgrinfo_appinfo_get_appid failed! error code=%d", ret);
1172         }
1173
1174         return is_wakeup_engine;
1175 }
1176
1177 bool CServiceMain::is_voice_assistant(const pkgmgrinfo_appinfo_h handle)
1178 {
1179         bool is_voice_assistant = false;
1180         char* metadata_value = NULL;
1181         const char* voice_assistant_metadata = "http://tizen.org/metadata/multi-assistant/name";
1182         int ret = pkgmgrinfo_appinfo_get_metadata_value(handle, voice_assistant_metadata, &metadata_value);
1183         if (PMINFO_R_OK == ret && NULL != metadata_value) {
1184                 is_voice_assistant = true;
1185         } else {
1186                 LOGE("pkgmgrinfo_appinfo_get_metadata_value failed! error code=%d", ret);
1187         }
1188         return is_voice_assistant;
1189 }
1190
1191 static int pkg_app_list_cb(const pkgmgrinfo_appinfo_h handle, void *user_data)
1192 {
1193         if (!g_service_main) return 0;
1194
1195         int *result = (int*)user_data;
1196         if (result) {
1197                 if (g_service_main->is_voice_assistant(handle)) {
1198                         *result = 1;
1199                 } else if (g_service_main->is_wakeup_engine(handle)) {
1200                         *result = 1;
1201                 }
1202         }
1203         return 0;
1204 }
1205
1206 /*
1207 INFO: Package install/update/uninstall scenario
1208 Install and Uninstall are obviously simple.
1209    Install: just INSTALL
1210    Uninstall: just UNINSTALL
1211 Update package (change the source codes and Run As again), there are four scenarios:
1212 1. UPDATE
1213    Source code change
1214 2. UNINSTALL -> INSTALL
1215    This happens when Tizen IDE Property > Tizen SDK > Rapid Development Support > Check "Enable Project specific settings"
1216    and change Application ID in tizen-manifest.xml file and Run As.
1217 3. UPDATE -> INSTALL
1218    This happens when Tizen IDE Property > Tizen SDK > Rapid Development Support > Uncheck "Enable Project specific settings"
1219    and change Application ID in tizen-manifest.xml file and Run As.
1220    At UPDATE event, pkgid (package parameter) is invalid...
1221 4. UPDATE
1222    Exceptionally, only UPDATE can be called when Application ID in tizen-manifest.xml file is changed.
1223    At UPDATE event, pkgid (package parameter) is valid, and only appid is changed; the previous appid is invalid.
1224 */
1225 static void _package_manager_event_cb(const char *type, const char *package, package_manager_event_type_e event_type, package_manager_event_state_e event_state, int progress, package_manager_error_e error, void *user_data)
1226 {
1227         CServiceMain* service_main = static_cast<CServiceMain*>(user_data);
1228
1229         int ret = 0;
1230         uid_t uid = getuid();
1231         pkgmgrinfo_pkginfo_h handle = NULL;
1232         static bool in_progress = false;
1233         bool should_exit = false;
1234
1235         if (!package || !type)
1236                 return;
1237
1238         if (PACKAGE_MANAGER_EVENT_TYPE_UPDATE != event_type &&
1239                 PACKAGE_MANAGER_EVENT_TYPE_INSTALL != event_type &&
1240                 PACKAGE_MANAGER_EVENT_TYPE_UNINSTALL != event_type)
1241                 return;
1242
1243         if (PACKAGE_MANAGER_EVENT_STATE_STARTED != event_state &&
1244                 PACKAGE_MANAGER_EVENT_STATE_COMPLETED != event_state)
1245                 return;
1246
1247         bool user = false;
1248         MAS_LOGD("type=%s package=%s event_type=%d event_state=%d progress=%d error=%d",
1249                 type, package, event_type, event_state, progress, error);
1250         ret = pkgmgrinfo_pkginfo_get_pkginfo(package, &handle);
1251         if (ret != PMINFO_R_OK || NULL == handle) {
1252                 MAS_LOGW("Failed to call pkgmgrinfo_pkginfo_get_pkginfo(\"%s\",~) returned %d", package, ret);
1253                 /* Try to get in user packages */
1254                 user = true;
1255                 ret = pkgmgrinfo_pkginfo_get_usr_pkginfo(package, uid, &handle);
1256                 if (ret != PMINFO_R_OK || NULL == handle) {
1257                         MAS_LOGW("Failed to call pkgmgrinfo_pkginfo_get_pkginfo & get_usr_pkginfo(\"%s\",~) returned %d, uid : %d", package, ret, getuid());
1258                         return;
1259                 }
1260         }
1261
1262         if (user) {
1263                 /* Try to get in user packages */
1264                 pkgmgrinfo_appinfo_get_usr_list(handle, PMINFO_ALL_APP, pkg_app_list_cb, (void *)&ret, uid);
1265         }  else {
1266                 /* Try to get in global packages */
1267                 pkgmgrinfo_appinfo_get_list(handle, PMINFO_ALL_APP, pkg_app_list_cb, (void *)&ret);
1268         }
1269         if (1 == ret) {
1270                 if (PACKAGE_MANAGER_EVENT_STATE_STARTED == event_state) {
1271                         MAS_LOGI("processing PACKAGE_MANAGER_EVENT_STATE_STARTED event : %d", event_type);
1272                         if (false == in_progress) {
1273                                 in_progress = true;
1274                                 if (service_main) {
1275                                         service_main->deinitialize_service_plugin();
1276                                 } else {
1277                                         MAS_LOGE("service_main is NULL");
1278                                 }
1279                         }
1280                 } else if (PACKAGE_MANAGER_EVENT_STATE_COMPLETED == event_state) {
1281                         MAS_LOGI("processing PACKAGE_MANAGER_EVENT_STATE_COMPLETED event : %d", event_type);
1282                         if (false == in_progress) {
1283                                 if (service_main) {
1284                                         service_main->deinitialize_service_plugin();
1285                                 } else {
1286                                         MAS_LOGE("service_main is NULL");
1287                                 }
1288                         }
1289                         /*
1290                         if (service_main) {
1291                                 service_main->initialize_service_plugin();
1292                                 service_main->process_activated_setting();
1293                         } else {
1294                                 MAS_LOGE("service_main is NULL");
1295                         }
1296                         */
1297                         should_exit = true;
1298                         in_progress = false;
1299                 }
1300         }
1301
1302         pkgmgrinfo_pkginfo_destroy_pkginfo(handle);
1303
1304         if (should_exit) {
1305                 LOGI("Now restarting multi-assistant-service for reloading updated modules");
1306                 service_app_exit();
1307         }
1308
1309         return;
1310 }
1311
1312 bool CServiceMain::app_create(void *data)
1313 {
1314         // Todo: add your code here.
1315         MAS_LOGD("[Enter] Service app create");
1316
1317         g_service_main = this;
1318
1319         mClientManager.set_application_manager(&mApplicationManager);
1320
1321         mServiceIpc.set_client_manager(&mClientManager);
1322         mServiceIpc.set_application_manager(&mApplicationManager);
1323         mServiceIpc.set_service_ipc_observer(this);
1324
1325         mServicePlugin.set_service_ipc(&mServiceIpc);
1326         mServicePlugin.set_service_main(this);
1327
1328         int ret = mServiceIpc.open_connection();
1329         if (0 != ret) {
1330                 MAS_LOGE("[ERROR] Fail to open connection");
1331         }
1332
1333         initialize_service_plugin();
1334
1335         process_activated_setting();
1336
1337         prelaunch_default_assistant();
1338         update_voice_key_support_mode();
1339
1340         /* For the case of preprocessing assistant, it always have to be launched beforehand */
1341         boost::optional<std::string> preprocessing_assistant =
1342                 mPreferenceManager.get_string(WAKEUP_SETTINGS_KEY_PREPROCESSING_ASSISTANT_APPID);
1343         if (preprocessing_assistant) {
1344                 MAS_LOGD("prelaunching preprocessing_assistant_appid : %s", (*preprocessing_assistant).c_str());
1345                 launch_client_by_appid((*preprocessing_assistant).c_str(), CLIENT_LAUNCH_MODE_PRELAUNCH);
1346         }
1347
1348         if (!mPackageManagerHandle) {
1349                 int ret = package_manager_create(&mPackageManagerHandle);
1350                 if (ret == PACKAGE_MANAGER_ERROR_NONE) {
1351                         ret = package_manager_set_event_cb(mPackageManagerHandle, _package_manager_event_cb, this);
1352                         if (ret == PACKAGE_MANAGER_ERROR_NONE) {
1353                                 LOGD("package_manager_set_event_cb succeeded.");
1354                         } else {
1355                                 LOGE("package_manager_set_event_cb failed(%d)", ret);
1356                         }
1357                 } else {
1358                         LOGE("package_manager_create failed(%d)", ret);
1359                 }
1360         }
1361
1362         return true;
1363 }
1364
1365 void CServiceMain::app_terminate(void *data)
1366 {
1367         MAS_LOGI("[ENTER]");
1368         if (mPackageManagerHandle) {
1369                 package_manager_unset_event_cb(mPackageManagerHandle);
1370                 package_manager_destroy(mPackageManagerHandle);
1371                 mPackageManagerHandle = NULL;
1372         }
1373
1374         deinitialize_service_plugin();
1375
1376         mPreferenceManager.unregister_changed_callback(
1377                 MULTI_ASSISTANT_SETTINGS_ACTIVATED, active_state_changed_cb);
1378
1379         int ret = mServiceIpc.close_connection();
1380         if (0 != ret) {
1381                 MAS_LOGE("[ERROR] Fail to close connection");
1382         }
1383
1384         g_service_main = nullptr;
1385
1386         MAS_LOGI("[END]");
1387         return;
1388 }
1389
1390 int CServiceMain::on_initialize(pid_t pid) {
1391         MAS_LOGD("[Enter] pid(%d)", pid);
1392
1393         std::string pid_appid;
1394         boost::optional<std::string> appid_by_pid = mApplicationManager.get_appid_by_pid(pid);
1395         if (appid_by_pid) {
1396                 pid_appid = *appid_by_pid;
1397                 MAS_LOGD("appid for pid %d is : %s", pid, pid_appid.c_str());
1398
1399                 /* Remove existing client that has same appid, if there's any */
1400                 mClientManager.destroy_client_by_appid(pid_appid.c_str());
1401
1402                 /* And remove a client that has same pid also */
1403                 mClientManager.destroy_client_by_pid(pid);
1404
1405                 mClientManager.create_client(pid, pid_appid.c_str());
1406
1407                 const char *current_maclient_appid = NULL;
1408                 if (mCurrentClientInfo >= 0 && mCurrentClientInfo < MAX_MACLIENT_INFO_NUM) {
1409                         current_maclient_appid = mClientInfo[mCurrentClientInfo].appid;
1410                 }
1411
1412                 client_send_preprocessing_information(pid);
1413                 if (MA_VOICE_KEY_STATUS_PRESSED == mLastVoiceKeyStatus) {
1414                         client_send_voice_key_status_change(pid, mLastVoiceKeyStatus);
1415                 }
1416                 if (current_maclient_appid && 0 == pid_appid.compare(current_maclient_appid)) {
1417                         MAS_LOGD("MA client with current maclient appid connected!");
1418
1419                         if (0 == mWakeupClientAppId.compare(pid_appid)) {
1420                                 mWakeupClientAppId.clear();
1421                                 mServiceIpc.change_active_state(pid, MA_ACTIVE_STATE_ACTIVE);
1422                                 process_preprocessing_state_event(PREPROCESSING_STATE_EVENT_ASSISTANT_ACTIVATED);
1423                         } else {
1424                                 MAS_LOGE("[ERROR] mWakeupClientAppId and appid differ : %s %s",
1425                                         mWakeupClientAppId.c_str(), pid_appid.c_str());
1426                         }
1427                 } else {
1428                         MAS_LOGD("MA client connected, but its appid does not match with current maclient");
1429                 }
1430
1431                 mServiceIpc.change_service_state(pid, get_current_service_state());
1432         } else {
1433                 MAS_LOGE("[ERROR] Fail to retrieve appid");
1434         }
1435
1436         return 0;
1437 }
1438
1439 int CServiceMain::on_deinitialize(pid_t pid) {
1440         MAS_LOGD("[Enter] pid(%d)", pid);
1441         mClientManager.destroy_client_by_pid(pid);
1442         return 0;
1443 }
1444
1445 int CServiceMain::on_get_audio_format(pid_t pid, int& rate, int& channel, int& audio_type) {
1446         int main_rate, main_channel, main_audio_type;
1447         int ret = client_get_audio_format(pid,
1448                 &main_rate, &main_channel, &main_audio_type);
1449         rate = main_rate;
1450         channel = main_channel;
1451         audio_type = main_audio_type;
1452         return ret;
1453 }
1454
1455 int CServiceMain::on_get_audio_source_type(pid_t pid, std::string& type) {
1456         char *main_type = nullptr;
1457         int ret = client_get_audio_source_type(pid, &main_type);
1458         if (0 == ret && main_type) {
1459                 type = std::string{main_type};
1460         }
1461         return ret;
1462 }
1463
1464 int CServiceMain::on_send_asr_result(pid_t pid, int event, std::string asr_result) {
1465         return client_send_asr_result(pid, event, asr_result.c_str());
1466 }
1467
1468 int CServiceMain::on_send_result(pid_t pid, std::string display_text,
1469         std::string utterance_text, std::string result_json) {
1470         return client_send_result(pid,
1471                 display_text.c_str(), utterance_text.c_str(), result_json.c_str());
1472 }
1473
1474 int CServiceMain::on_send_recognition_result(pid_t pid, int result) {
1475         return client_send_recognition_result(pid, result);
1476 }
1477
1478 int CServiceMain::on_start_streaming_audio_data(pid_t pid, int type) {
1479         return client_start_streaming_audio_data(pid, type);
1480 }
1481
1482 int CServiceMain::on_stop_streaming_audio_data(pid_t pid, int type) {
1483         return client_stop_streaming_audio_data(pid, type);
1484 }
1485
1486 int CServiceMain::on_update_voice_feedback_state(pid_t pid, int state) {
1487         return client_update_voice_feedback_state(pid, state);
1488 }
1489
1490 int CServiceMain::on_send_assistant_specific_command(pid_t pid, std::string command) {
1491         return client_set_assistant_specific_command(pid, command.c_str());
1492 }
1493
1494 int CServiceMain::on_set_background_volume(pid_t pid, double ratio) {
1495         return client_set_background_volume(pid, ratio);
1496 }
1497
1498 int CServiceMain::on_set_preprocessing_allow_mode(pid_t pid, int mode, std::string app_id) {
1499         return client_set_preprocessing_allow_mode(pid,
1500                 static_cast<ma_preprocessing_allow_mode_e>(mode), app_id.c_str());
1501 }
1502
1503 int CServiceMain::on_send_preprocessing_result(pid_t pid, int result) {
1504         return client_send_preprocessing_result(pid, result);
1505 }
1506
1507 int CServiceMain::on_set_wake_word_audio_require_flag(pid_t pid, int require) {
1508         return client_set_wake_word_audio_require_flag(pid, require);
1509 }
1510
1511 int CServiceMain::on_set_assistant_language(pid_t pid, std::string language) {
1512         return client_set_assistant_language(pid, language.c_str());
1513 }
1514
1515 int CServiceMain::on_add_wake_word(pid_t pid, std::string wake_word, std::string language) {
1516         return client_add_wake_word(pid, wake_word.c_str(), language.c_str());
1517 }
1518
1519 int CServiceMain::on_remove_wake_word(pid_t pid, std::string wake_word, std::string language) {
1520         return client_remove_wake_word(pid, wake_word.c_str(), language.c_str());
1521 }
1522
1523 int CServiceMain::on_ui_initialize(pid_t pid)
1524 {
1525         return ui_client_initialize(pid);
1526 }
1527
1528 int CServiceMain::on_ui_deinitialize(pid_t pid)
1529 {
1530         return ui_client_deinitialize(pid);
1531 }
1532
1533 int CServiceMain::on_ui_change_assistant(std::string app_id)
1534 {
1535         return ui_client_change_assistant(app_id.c_str());
1536 }