Remove legacy codes
[platform/core/connectivity/smartcard-service.git] / server / smartcard-daemon.cpp
index a8ddbd3..3c2890a 100644 (file)
 #include <sys/stat.h>
 #include <signal.h>
 #include <vector>
-#if defined(USE_AUTOSTART) && !defined(USE_GDBUS)
-#include <dbus/dbus-glib.h>
-#include <dbus/dbus-glib-bindings.h>
-#endif
 
 /* SLP library header */
 
 /* local header */
 #include "Debug.h"
-#include "ServerIPC.h"
 #include "ServerResource.h"
-#ifdef USE_GDBUS
 #include "smartcard-service-gdbus.h"
 #include "ServerGDBus.h"
-#else
-#ifdef USE_AUTOSTART
-#include "SmartcardDbus.h"
-#include "smartcard-service-binding.h"
-#endif
-#endif
 
 /* definition */
 using namespace std;
@@ -53,10 +41,6 @@ using namespace smartcard_service_api;
 
 /* global variable */
 GMainLoop *main_loop = NULL;
-#if defined(USE_AUTOSTART) && !defined(USE_GDBUS)
-GObject *object = NULL;
-DBusGConnection *connection = NULL;
-#endif
 
 #ifndef USE_AUTOSTART
 static void daemonize(void)
@@ -101,7 +85,6 @@ static void daemonize(void)
 }
 #endif
 
-#ifdef USE_GDBUS
 static void _bus_acquired_cb(GDBusConnection *connection,
        const gchar *path, gpointer user_data)
 {
@@ -126,118 +109,14 @@ static void _name_lost_cb(GDBusConnection *connnection,
        ServerGDBus::getInstance().deinit();
 }
 
-#else
-#ifdef USE_AUTOSTART
-G_DEFINE_TYPE(Smartcard_Service, smartcard_service, G_TYPE_OBJECT)
-
-/* Just Check the assert  and set the error message */
-#define __G_ASSERT(test, return_val, error, domain, error_code)\
-G_STMT_START\
-{\
-       if G_LIKELY (!(test)) { \
-               g_set_error (error, domain, error_code, #test); \
-               return (return_val); \
-       }\
-}\
-G_STMT_END
-
-GQuark smartcard_service_error_quark(void)
-{
-       _DBG("smartcard_service_error_quark entered");
-
-       return g_quark_from_static_string("smartcard_service_error");
-}
-
-static void smartcard_service_init(Smartcard_Service *smartcard_service)
-{
-       _DBG("smartcard_service_init entered");
-}
-
-static void smartcard_service_class_init(Smartcard_ServiceClass *smartcard_service_class)
-{
-       _DBG("smartcard_service_class_init entered");
-
-       dbus_g_object_type_install_info(SMARTCARD_SERVICE_TYPE, &dbus_glib_smartcard_service_object_info);
-}
-
-gboolean smartcard_service_launch(Smartcard_Service *smartcard_service, guint *result_val, GError **error)
-{
-       _DBG("smartcard_service_launch entered");
-
-       return TRUE;
-}
-
-static void _initialize_dbus()
-{
-       GError *error = NULL;
-       DBusGProxy *proxy = NULL;
-       guint ret = 0;
-
-       _BEGIN();
-
-       g_type_init();
-
-       connection = dbus_g_bus_get(DBUS_BUS_SYSTEM, &error);
-       if (error == NULL)
-       {
-               object = (GObject *)g_object_new(SMARTCARD_SERVICE_TYPE, NULL);
-               dbus_g_connection_register_g_object(connection, SMARTCARD_SERVICE_PATH, object);
-
-               /* register service */
-               proxy = dbus_g_proxy_new_for_name(connection, DBUS_SERVICE_DBUS, DBUS_PATH_DBUS, DBUS_INTERFACE_DBUS);
-               if (proxy != NULL)
-               {
-                       if (!org_freedesktop_DBus_request_name(proxy, SMARTCARD_SERVICE_NAME, 0, &ret, &error))
-                       {
-                               _ERR("Unable to register service: %s", error->message);
-                               g_error_free(error);
-                       }
-
-                       g_object_unref (proxy);
-               }
-               else
-               {
-                       _ERR("dbus_g_proxy_new_for_name failed");
-               }
-       }
-       else
-       {
-               _ERR("ERROR: Can't get on system bus [%s]", error->message);
-               g_error_free(error);
-       }
-
-       _END();
-}
-
-static void _finalize_dbus()
-{
-       _BEGIN();
-
-       dbus_g_connection_unregister_g_object(connection, object);
-       g_object_unref(object);
-
-       _END();
-}
-#endif
-#endif
-
 static void __sighandler(int sig)
 {
        _DBG("signal!! [%d]", sig);
-
-#ifdef USE_GDBUS
-#else
-#ifdef USE_AUTOSTART
-       _finalize_dbus();
-#endif
-#endif
 }
 
 int main(int argc, char *argv[])
 {
-#ifdef USE_GDBUS
        guint id = 0;
-#endif
        signal(SIGTERM, &__sighandler);
 
 #ifndef USE_AUTOSTART
@@ -252,7 +131,6 @@ int main(int argc, char *argv[])
 
        main_loop = g_main_new(TRUE);
 
-#ifdef USE_GDBUS
        id = g_bus_own_name(G_BUS_TYPE_SYSTEM,
                        "org.tizen.SmartcardService",
                        G_BUS_NAME_OWNER_FLAGS_NONE,
@@ -261,22 +139,12 @@ int main(int argc, char *argv[])
                        _name_lost_cb,
                        NULL,
                        NULL);
-#else
-       ServerIPC::getInstance()->createListenSocket();
-#ifdef USE_AUTOSTART
-       _initialize_dbus();
-#endif
-#endif
+
        g_main_loop_run(main_loop);
 
-#ifdef USE_GDBUS
        if (id)
                g_bus_unown_name(id);
-#else
-#ifdef USE_AUTOSTART
-       _finalize_dbus();
-#endif
-#endif
+
        /* release secure element.. (pure virtual function problem..) */
        ServerResource::getInstance().unloadSecureElements();