X-Git-Url: http://review.tizen.org/git/?a=blobdiff_plain;f=common%2Fstt_defs.h;h=abcabe49ed400bbb1b106cfd0ca392ffc87d6a87;hb=f131f8a8dc3e3012eee9fd6516bda79d9b89e5ad;hp=4f7fc952b25d981760c431ce759428038e568f2c;hpb=5b9ffe2adba0694aba0cd4a009dbe001e191fa1d;p=platform%2Fcore%2Fuifw%2Fstt.git diff --git a/common/stt_defs.h b/common/stt_defs.h index 4f7fc95..abcabe4 100644 --- a/common/stt_defs.h +++ b/common/stt_defs.h @@ -1,5 +1,5 @@ /* -* Copyright (c) 2011-2014 Samsung Electronics Co., Ltd All Rights Reserved +* Copyright (c) 2011-2016 Samsung Electronics Co., Ltd All Rights Reserved * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at @@ -33,6 +33,16 @@ extern "C" { #define STT_SERVER_SERVICE_OBJECT_PATH "/org/tizen/voice/sttserver" #define STT_SERVER_SERVICE_INTERFACE "org.tizen.voice.sttserver" +#define STT_SERVER_CUSTOM_SERVICE_NAME "org.tizen.voice.sttservercustom" +#define STT_SERVER_CUSTOM_SERVICE_OBJECT_PATH "/org/tizen/voice/sttservercustom" +#define STT_SERVER_CUSTOM_SERVICE_INTERFACE "org.tizen.voice.sttservercustom" + +/****************************************************************************************** +* Definitions for Vconf Keys +*******************************************************************************************/ + +#define STT_ENGINE_DB_DEFAULT "db/voice/stt/engine/default" +#define STT_ENGINE_DB_CUSTOM "db/voice/stt/engine/custom" /****************************************************************************************** * Message Definition for Client @@ -46,6 +56,8 @@ extern "C" { #define STT_METHOD_GET_CURRENT_LANG "stt_method_get_current_lang" #define STT_METHOD_IS_TYPE_SUPPORTED "stt_method_is_recognition_type_supported" #define STT_METHOD_CHECK_APP_AGREED "stt_method_check_app_agreed" +#define STT_METHOD_SET_PRIVATE_DATA "stt_method_set_private_data" +#define STT_METHOD_GET_PRIVATE_DATA "stt_method_get_private_data" #define STT_METHOD_SET_START_SOUND "stt_method_set_start_sound" #define STT_METHOD_UNSET_START_SOUND "stt_method_unset_start_sound" @@ -62,29 +74,37 @@ extern "C" { #define STTD_METHOD_HELLO "sttd_method_hello" #define STTD_METHOD_SET_STATE "sttd_method_set_state" #define STTD_METHOD_SET_VOLUME "sttd_method_set_volume" +#define STTD_METHOD_SPEECH_STATUS "sttd_method_speech_status" + +#define STT_METHOD_START_FILE "stt_method_start_file" +#define STT_METHOD_CANCEL_FILE "stt_method_cancel_file" /****************************************************************************************** * Defines for configuration *******************************************************************************************/ -#define STT_TIME_INFO_PATH tzplatform_mkpath(TZ_USER_HOME, "share/.voice/stt-time.xml") - +#define STT_CONFIG_BASE tzplatform_mkpath(TZ_USER_HOME, "share/.voice") #define STT_CONFIG tzplatform_mkpath(TZ_USER_HOME, "share/.voice/stt-config.xml") #define STT_DEFAULT_CONFIG tzplatform_mkpath(TZ_SYS_RO_SHARE, "/voice/stt/1.0/stt-config.xml") +#define STT_TIME_INFO_PATH tzplatform_mkpath(TZ_USER_HOME, "share/.voice/stt-time.xml") + #define STT_DEFAULT_ENGINE tzplatform_mkpath(TZ_SYS_RO_SHARE, "/voice/stt/1.0/engine") #define STT_DEFAULT_ENGINE_INFO tzplatform_mkpath(TZ_SYS_RO_SHARE, "/voice/stt/1.0/engine-info") #define STT_DEFAULT_ENGINE_SETTING tzplatform_mkpath(TZ_SYS_RO_SHARE, "/voice/stt/1.0/engine-setting") -#define STT_BASE_LANGUAGE "en_US" +#define STT_HOME tzplatform_mkpath(TZ_USER_HOME, "share/.voice/stt") +#define STT_DOWNLOAD_BASE tzplatform_mkpath(TZ_USER_HOME, "share/.voice/stt/1.0") +#define STT_DOWNLOAD_ENGINE_INFO tzplatform_mkpath(TZ_USER_HOME, "share/.voice/stt/1.0/engine-info") #define STT_RETRY_COUNT 5 #define STT_FEATURE_PATH "tizen.org/feature/speech.recognition" #define STT_MIC_FEATURE_PATH "tizen.org/feature/microphone" -#define STT_PRIVILEGE "http://tizen.org/privilege/recorder" +#define STT_PRIVILEGE_RECORDER "http://tizen.org/privilege/recorder" +#define STT_PRIVILEGE_APPLAUNCH "http://tizen.org/privilege/appmanager.launch" #ifdef __cplusplus }