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