/* * media-thumbnail-server * * Copyright (c) 2000 - 2011 Samsung Electronics Co., Ltd. All rights reserved. * * Contact: Hyunjun Ko * * 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 * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. * */ #include "media-thumbnail.h" #include "media-thumb-debug.h" #include "media-thumb-ipc.h" #include "media-thumb-util.h" #include "thumb-server-internal.h" #include #ifdef LOG_TAG #undef LOG_TAG #endif #define LOG_TAG "MEDIA_THUMBNAIL_SERVER" extern GMainLoop *g_thumb_server_mainloop; int main(void) { int sockfd = -1; GSource *source = NULL; GIOChannel *channel = NULL; GMainContext *context = NULL; if (ms_cynara_initialize() != MS_MEDIA_ERR_NONE) { thumb_err("Cynara initialization failed"); return -1; } /* Create and bind new tcp socket */ if (!_thumb_server_prepare_socket(&sockfd)) { thumb_err("Failed to create socket"); return -1; } g_thumb_server_mainloop = g_main_loop_new(context, FALSE); context = g_main_loop_get_context(g_thumb_server_mainloop); /* Create new channel to watch tcp socket */ channel = g_io_channel_unix_new(sockfd); source = g_io_create_watch(channel, G_IO_IN); /* Set callback to be called when socket is readable */ g_source_set_callback(source, (GSourceFunc)_thumb_server_read_socket, NULL, NULL); g_source_attach(source, context); GSource *source_evas_init = NULL; source_evas_init = g_idle_source_new(); g_source_set_callback(source_evas_init, _thumb_daemon_start_jobs, NULL, NULL); g_source_attach(source_evas_init, context); thumb_dbg("************************************"); thumb_dbg("*** Thumbnail server is running ***"); thumb_dbg("************************************"); g_main_loop_run(g_thumb_server_mainloop); thumb_dbg("Thumbnail server is shutting down..."); g_io_channel_shutdown(channel, FALSE, NULL); g_io_channel_unref(channel); /*close socket*/ close(sockfd); _thumb_daemon_finish_jobs(); g_main_loop_unref(g_thumb_server_mainloop); ms_cynara_finish(); return 0; }