Fix bugs
[platform/core/uifw/tts.git] / server / ttsd_main_sr.c
index a970765..97e2461 100644 (file)
@@ -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
 
 static Ecore_Timer* g_check_client_timer = NULL;
 
-char* get_tag()
+const char* get_tag()
+{
+       return "ttsdsr";
+}
+
+const char* tts_tag()
 {
        return "ttsdsr";
 }
@@ -38,24 +43,24 @@ int main()
        SLOG(LOG_DEBUG, get_tag(), "  ");
        SLOG(LOG_DEBUG, get_tag(), "  ");
        SLOG(LOG_DEBUG, get_tag(), "===== TTS DAEMON SR INITIALIZE");
+
        if (!ecore_init()) {
-               SLOG(LOG_ERROR, get_tag(), "[Main ERROR] fail ecore_init()");
+               SLOG(LOG_ERROR, get_tag(), "[Main ERROR] Fail ecore_init()");
                return -1;
        }
 
-       if (0 != ttsd_initialize()) {
-               SLOG(LOG_ERROR, get_tag(), "[Main ERROR] fail to initialize tts-daemon-sr"); 
+       if (0 != ttsd_dbus_open_connection()) {
+               SLOG(LOG_ERROR, get_tag(), "[Main ERROR] Fail to open dbus connection");
                return EXIT_FAILURE;
        }
 
-       if (0 != ttsd_dbus_open_connection()) {
-               SLOG(LOG_ERROR, get_tag(), "[Main ERROR] fail to open dbus connection");
+       if (0 != ttsd_initialize()) {
+               SLOG(LOG_ERROR, get_tag(), "[Main ERROR] Fail to initialize tts-daemon-sr"); 
                return EXIT_FAILURE;
        }
 
        if (0 != ttsd_network_initialize()) {
-               SLOG(LOG_ERROR, get_tag(), "[Main ERROR] fail to initialize network \n");
-               return EXIT_FAILURE;
+               SLOG(LOG_WARN, get_tag(), "[Main WARNING] Fail to initialize network");
        }
 
        g_check_client_timer = ecore_timer_add(CLIENT_CLEAN_UP_TIME, ttsd_cleanup_client, NULL);
@@ -63,7 +68,7 @@ int main()
                SLOG(LOG_WARN, get_tag(), "[Main Warning] Fail to create timer of client check");
        }
 
-       SLOG(LOG_DEBUG, get_tag(), "[Main] tts-daemon-sr start...\n"); 
+       SLOG(LOG_DEBUG, get_tag(), "[Main] tts-daemon-sr start..."); 
        SLOG(LOG_DEBUG, get_tag(), "=====");
        SLOG(LOG_DEBUG, get_tag(), "  ");
        SLOG(LOG_DEBUG, get_tag(), "  ");
@@ -76,10 +81,10 @@ int main()
                ecore_timer_del(g_check_client_timer);
        }
 
-       ttsd_network_finalize();
-
        ttsd_dbus_close_connection();
 
+       ttsd_network_finalize();
+
        ttsd_finalize();
 
        ecore_shutdown();