X-Git-Url: http://review.tizen.org/git/?a=blobdiff_plain;f=server%2Fttsd_main.h;h=306e799bd98cffec6d00127e1ace250e17351d56;hb=8a567079ea0677de5c4da1666ec8b5ad86a3bce7;hp=6ac5cffb0a0e82122c99bbec601a16c4210b4ede;hpb=8c242a73c16bd4d205854b39c7886c4f3c0bcf7a;p=platform%2Fcore%2Fuifw%2Ftts.git diff --git a/server/ttsd_main.h b/server/ttsd_main.h index 6ac5cff..306e799 100644 --- a/server/ttsd_main.h +++ b/server/ttsd_main.h @@ -1,5 +1,5 @@ /* -* Copyright (c) 2012, 2013 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 @@ -18,85 +18,95 @@ #include #include #include +#include #include #include #include #include #include -/* For multi-user support */ -#include - -#include "ttsp.h" +#include "ttse.h" #include "tts_defs.h" #ifdef __cplusplus extern "C" { #endif -/* TTS Daemon Define */ -#define BASE_DIRECTORY_DEFAULT "/usr/lib/voice/tts/1.0" -#define ENGINE_DIRECTORY_DEFAULT "/usr/lib/voice/tts/1.0/engine" -#define ENGINE_DIRECTORY_DEFAULT_SETTING "/usr/lib/voice/tts/1.0/setting" - -#define CONFIG_DIRECTORY tzplatform_mkpath(TZ_USER_HOME, ".voice") - -#define ENGINE_DIRECTORY_DOWNLOAD tzplatform_mkpath(TZ_USER_HOME, ".voice/tts/1.0/engine") -#define ENGINE_DIRECTORY_DOWNLOAD_SETTING tzplatform_mkpath(TZ_USER_HOME, ".voice/tts/1.0/setting") - -#define CONFIG_DEFAULT BASE_DIRECTORY_DEFAULT"/ttsd.conf" -#define DEFAULT_CONFIG_FILE_NAME tzplatform_mkpath(TZ_USER_HOME, ".voice/ttsd_default.conf") - /* for debug message */ -#define DATA_DEBUG +#define ENGINE_AGENT_DEBUG typedef enum { - TTSD_ERROR_NONE = 0, /**< Successful */ - TTSD_ERROR_OUT_OF_MEMORY = -ENOMEM, /**< Out of Memory */ - TTSD_ERROR_IO_ERROR = -EIO, /**< I/O error */ - TTSD_ERROR_INVALID_PARAMETER = -EINVAL, /**< Invalid parameter */ - TTSD_ERROR_OUT_OF_NETWORK = -ENETDOWN, /**< Out of network */ - TTSD_ERROR_INVALID_STATE = -0x0100000 | 0x21, /**< Invalid state */ - TTSD_ERROR_INVALID_VOICE = -0x0100000 | 0x22, /**< Invalid voice */ - TTSD_ERROR_ENGINE_NOT_FOUND = -0x0100000 | 0x23, /**< No available engine */ - TTSD_ERROR_TIMED_OUT = -0x0100000 | 0x24, /**< No answer from the daemon */ - TTSD_ERROR_OPERATION_FAILED = -0x0100000 | 0x25, /**< Operation failed */ - TTSD_ERROR_AUDIO_POLICY_BLOCKED = -0x0100000 | 0x26 /**< Audio policy blocked */ -}ttsd_error_e; + TTSD_ERROR_NONE = TIZEN_ERROR_NONE, /**< Successful */ + TTSD_ERROR_OUT_OF_MEMORY = TIZEN_ERROR_OUT_OF_MEMORY, /**< Out of Memory */ + TTSD_ERROR_IO_ERROR = TIZEN_ERROR_IO_ERROR, /**< I/O error */ + TTSD_ERROR_INVALID_PARAMETER = TIZEN_ERROR_INVALID_PARAMETER,/**< Invalid parameter */ + TTSD_ERROR_OUT_OF_NETWORK = TIZEN_ERROR_NETWORK_DOWN, /**< Out of network */ + TTSD_ERROR_TIMED_OUT = TIZEN_ERROR_TIMED_OUT, /**< No answer from the daemon */ + TTSD_ERROR_PERMISSION_DENIED = TIZEN_ERROR_PERMISSION_DENIED,/**< Permission denied */ + TTSD_ERROR_NOT_SUPPORTED = TIZEN_ERROR_NOT_SUPPORTED, /**< TTS NOT supported */ + TTSD_ERROR_INVALID_STATE = TIZEN_ERROR_TTS | 0x01, /**< Invalid state */ + TTSD_ERROR_INVALID_VOICE = TIZEN_ERROR_TTS | 0x02, /**< Invalid voice */ + TTSD_ERROR_ENGINE_NOT_FOUND = TIZEN_ERROR_TTS | 0x03, /**< No available engine */ + TTSD_ERROR_OPERATION_FAILED = TIZEN_ERROR_TTS | 0x04, /**< Operation failed */ + TTSD_ERROR_AUDIO_POLICY_BLOCKED = TIZEN_ERROR_TTS | 0x05, /**< Audio policy blocked */ + TTSD_ERROR_NOT_SUPPORTED_FEATURE = TIZEN_ERROR_TTS | 0x06, /**< Not supported feature of current engine*/ + TTSD_ERROR_SERVICE_RESET = TIZEN_ERROR_TTS | 0x07 /**< Service reset */ +} ttsd_error_e; typedef enum { TTSD_MODE_DEFAULT = 0, /**< Default mode for normal application */ TTSD_MODE_NOTIFICATION, /**< Notification mode */ - TTSD_MODE_SCREEN_READER /**< Screen reader mode */ -}ttsd_mode_e; + TTSD_MODE_SCREEN_READER, /**< Screen reader mode */ + TTSD_MODE_INTERRUPT /**< Interrupt mode */ +} ttsd_mode_e; typedef enum { TTSD_INTERRUPTED_PAUSED = 0, /**< Current state change 'Pause' */ TTSD_INTERRUPTED_STOPPED /**< Current state change 'Ready' */ -}ttsd_interrupted_code_e; - +} ttsd_interrupted_code_e; typedef struct { char* engine_id; char* engine_name; char* ug_name; -}engine_s; +} engine_s; typedef struct { char* language; - ttsp_voice_type_e type; -}voice_s; + int type; +} voice_s; typedef struct { - char* key; - char* value; -}engine_setting_s; + int version; + + ttse_get_info_cb get_info; + + ttse_initialize_cb initialize; + ttse_deinitialize_cb deinitialize; + + ttse_foreach_supported_voices_cb foreach_voices; + ttse_is_valid_voice_cb is_valid_voice; + ttse_set_pitch_cb set_pitch; + + ttse_load_voice_cb load_voice; + ttse_unload_voice_cb unload_voice; + + ttse_start_synthesis_cb start_synth; + ttse_cancel_synthesis_cb cancel_synth; + + ttse_check_app_agreed_cb check_app_agreed; + ttse_need_app_credential_cb need_app_credential; + ttse_private_data_set_cb private_data_set; + ttse_private_data_requested_cb private_data_requested; +} tts_engine_callback_s; + /* get daemon mode : default, notification or screen reader */ ttsd_mode_e ttsd_get_mode(); /* Get log tag : default, notification, screen reader */ -char* get_tag(); +//const char* get_tag(); +const char* tts_tag(); #ifdef __cplusplus }