2 * Copyright (c) 2012, 2013 Samsung Electronics Co., Ltd All Rights Reserved
3 * Licensed under the Apache License, Version 2.0 (the "License");
4 * you may not use this file except in compliance with the License.
5 * You may obtain a copy of the License at
6 * http://www.apache.org/licenses/LICENSE-2.0
7 * Unless required by applicable law or agreed to in writing, software
8 * distributed under the License is distributed on an "AS IS" BASIS,
9 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
10 * See the License for the specific language governing permissions and
11 * limitations under the License.
15 #include "ttsd_main.h"
16 #include "ttsd_server.h"
17 #include "ttsd_dbus.h"
18 #include "ttsd_network.h"
22 #define CLIENT_CLEAN_UP_TIME 500
24 static Ecore_Timer* g_check_client_timer = NULL;
31 ttsd_mode_e ttsd_get_mode()
33 return TTSD_MODE_DEFAULT;
36 /* Main of TTS Daemon */
39 SLOG(LOG_DEBUG, get_tag(), " ");
40 SLOG(LOG_DEBUG, get_tag(), " ");
41 SLOG(LOG_DEBUG, get_tag(), "===== TTS DAEMON DEFAULT INITIALIZE");
43 SLOG(LOG_ERROR, get_tag(), "[Main ERROR] Fail ecore_init()");
47 if (0 != ttsd_initialize()) {
48 SLOG(LOG_ERROR, get_tag(), "[Main ERROR] Fail to initialize tts-daemon");
52 if (0 != ttsd_dbus_open_connection()) {
53 SLOG(LOG_ERROR, get_tag(), "[Main ERROR] Fail to open dbus connection");
57 if (0 != ttsd_network_initialize()) {
58 SLOG(LOG_ERROR, get_tag(), "[Main ERROR] Fail to initialize network");
62 g_check_client_timer = ecore_timer_add(CLIENT_CLEAN_UP_TIME, ttsd_cleanup_client, NULL);
63 if (NULL == g_check_client_timer) {
64 SLOG(LOG_WARN, get_tag(), "[Main Warning] Fail to create timer of client check");
67 SLOG(LOG_DEBUG, get_tag(), "[Main] tts-daemon start...\n");
68 SLOG(LOG_DEBUG, get_tag(), "=====");
69 SLOG(LOG_DEBUG, get_tag(), " ");
70 SLOG(LOG_DEBUG, get_tag(), " ");
72 ecore_main_loop_begin();
74 SLOG(LOG_DEBUG, get_tag(), "===== TTS DAEMON DEFAULT FINALIZE");
76 if (NULL != g_check_client_timer) {
77 ecore_timer_del(g_check_client_timer);
80 ttsd_network_finalize();
82 ttsd_dbus_close_connection();
88 SLOG(LOG_DEBUG, get_tag(), "=====");
89 SLOG(LOG_DEBUG, get_tag(), " ");
90 SLOG(LOG_DEBUG, get_tag(), " ");