summaryrefslogtreecommitdiff
path: root/src/ipc/media-thumb-ipc.c
blob: 1b9393da5472c9cb15114964193d3fc964e70b81 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
/*
 * libmedia-thumbnail
 *
 * Copyright (c) 2000 - 2011 Samsung Electronics Co., Ltd. All rights reserved.
 *
 * Contact: Hyunjun Ko <zzoon.ko@samsung.com>
 *
 * 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-ipc.h"
#include "media-thumb-util.h"
#include "media-thumb-db.h"
#include "media-thumb-debug.h"
#include <glib.h>
#include <fcntl.h>
#include <string.h>
#include <errno.h>
#include <grp.h>
#include <pwd.h>

#define THUMB_SOCK_BLOCK_SIZE 512
#define THUMB_IPC_PATH tzplatform_mkpath(TZ_SYS_RUN, "media-server/media_ipc_thumbcreator.socket")

static GQueue *g_manage_queue = NULL;
static GQueue *g_manage_raw_queue = NULL;


typedef struct {
	GIOChannel *channel;
	int msg_type;
	unsigned int request_id;
	bool isCanceled;
	bool isRequested;
	int source_id;
	uid_t uid;
	char *path;
	thumbUserData *userData;
} thumbReq;

typedef struct {
	GIOChannel *channel;
	int msg_type;
	bool isCanceled;
	bool isRequested;
	int request_id;
	int source_id;
	int width;
	int height;
	uid_t uid;
	char *path;
	thumbRawUserData *userData;
} thumbRawReq;

static int _media_thumb_send_request();
static int _media_thumb_raw_data_send_request();


int _media_thumb_get_error()
{
	if (errno == EWOULDBLOCK) {
		thumb_err("Timeout. Can't try any more");
		return MS_MEDIA_ERR_SOCKET_RECEIVE_TIMEOUT;
	} else {
		thumb_stderror("recvfrom failed");
		return MS_MEDIA_ERR_SOCKET_RECEIVE;
	}
}

void __media_thumb_pop()
{
	int len = 0;

	if (g_manage_queue != NULL) {
		thumbReq *req = (thumbReq *)g_queue_pop_head(g_manage_queue);
		if (req != NULL) {
			GSource *source_id = g_main_context_find_source_by_id(g_main_context_get_thread_default(), req->source_id);

			g_io_channel_shutdown(req->channel, TRUE, NULL);
			g_io_channel_unref(req->channel);

			if (source_id != NULL) {
				g_source_destroy(source_id);
			} else {
				thumb_err("G_SOURCE_ID is NULL");
			}

			SAFE_FREE(req->path);
			SAFE_FREE(req->userData);
			SAFE_FREE(req);
		}

		/* Check manage queue */
		len = g_queue_get_length(g_manage_queue);
		if (len > 0)
			_media_thumb_send_request();
	}
}

int __media_thumb_cancel(unsigned int request_id)
{
	int len = 0, i;
	bool flag = false;

	if (g_manage_queue != NULL) {
		len = g_queue_get_length(g_manage_queue);

		for (i = 0; i < len; i++) {
			thumbReq *req = NULL;
			req = (thumbReq *)g_queue_peek_nth(g_manage_queue, i);
			if (req == NULL) continue;

			if (req->request_id == request_id) {
				if (req->isRequested == true) {
					req->isCanceled = true;
				} else {
					g_queue_pop_nth(g_manage_queue, i);

					SAFE_FREE(req->path);
					SAFE_FREE(req->userData);
					SAFE_FREE(req);
				}

				flag = true;

				break;
			}
		}
	}

	if (flag == false)
		return MS_MEDIA_ERR_INTERNAL;

	return MS_MEDIA_ERR_NONE;
}

void __media_thumb_pop_raw_data()
{
	int len = 0;

	if (g_manage_raw_queue != NULL) {
		thumbRawReq *req = (thumbRawReq *)g_queue_pop_head(g_manage_raw_queue);
		if (req != NULL) {
			GSource *source_id = g_main_context_find_source_by_id(g_main_context_get_thread_default(), req->source_id);

			g_io_channel_shutdown(req->channel, TRUE, NULL);
			g_io_channel_unref(req->channel);

			if (source_id != NULL) {
				g_source_destroy(source_id);
			} else {
				thumb_err("G_SOURCE_ID is NULL");
			}

			SAFE_FREE(req->path);
			SAFE_FREE(req->userData);
			SAFE_FREE(req);
		}

		/* Check manage queue */
		len = g_queue_get_length(g_manage_raw_queue);
		if (len > 0)
			_media_thumb_raw_data_send_request();
	}
}

int __media_thumb_cancel_raw_data(int request_id)
{
	int len = 0, i;
	bool flag = false;

	if (g_manage_raw_queue != NULL) {
		len = g_queue_get_length(g_manage_raw_queue);

		for (i = 0; i < len; i++) {
			thumbRawReq *req = NULL;
			req = (thumbRawReq *)g_queue_peek_nth(g_manage_raw_queue, i);
			if (req == NULL) continue;

			if (req->request_id == request_id) {
				if (req->isRequested == true) {
					req->isCanceled = true;
				} else {
					g_queue_pop_nth(g_manage_raw_queue, i);

					SAFE_FREE(req->path);
					SAFE_FREE(req->userData);
					SAFE_FREE(req);
				}

				flag = true;

				break;
			}
		}
	}

	if (flag == false)
		return MS_MEDIA_ERR_INTERNAL;

	return MS_MEDIA_ERR_NONE;

}

bool __media_thumb_check_cancel(void)
{
	thumbReq *req = NULL;
	req = (thumbReq *)g_queue_peek_head(g_manage_queue);

	if (req == NULL) {
		return false;
	} else {
		if (req->isCanceled)
			return false;
		else
			return true;
	}
}

bool __media_thumb_check_cancel_for_raw(void)
{
	thumbRawReq *req = NULL;
	req = (thumbRawReq *)g_queue_peek_head(g_manage_raw_queue);

	if (req == NULL) {
		return false;
	} else {
		if (req->isCanceled)
			return false;
		else
			return true;
	}
}

int _media_thumb_recv_msg(int sock, int header_size, thumbMsg *msg)
{
	int recv_msg_len = 0;
	int remain_size = 0;
	int block_size = THUMB_SOCK_BLOCK_SIZE;
	int recv_block = 0;
	unsigned char *buf = NULL;
	unsigned char *block_buf = NULL;

	THUMB_MALLOC(buf, header_size);
	THUMB_MALLOC(block_buf, THUMB_SOCK_BLOCK_SIZE);
	if (buf == NULL || block_buf == NULL) {
		thumb_err("memory allocation failed");
		SAFE_FREE(buf);
		SAFE_FREE(block_buf);
		return MS_MEDIA_ERR_OUT_OF_MEMORY;
	}

	if ((recv_msg_len = recv(sock, buf, header_size, 0)) <= 0) {
		thumb_stderror("recv failed");
		SAFE_FREE(buf);
		SAFE_FREE(block_buf);
		return _media_thumb_get_error();
	}

	memcpy(msg, buf, header_size);

	if (strlen(msg->org_path) == 0 || strlen(msg->org_path) >= MAX_FILEPATH_LEN) {
		thumb_err("org_path size is invalid %d", strlen(msg->org_path));

		return MS_MEDIA_ERR_SOCKET_RECEIVE;
	}

	/* it can be empty string */
	if (strlen(msg->dst_path) >= MAX_FILEPATH_LEN) {
		thumb_err("dst_path size is invalid %d", strlen(msg->dst_path));

		return MS_MEDIA_ERR_SOCKET_RECEIVE;
	}

	SAFE_FREE(buf);
	if (msg->thumb_size < 0) {
		thumb_err("recv data is wrong");
		SAFE_FREE(block_buf);
		return MS_MEDIA_ERR_SOCKET_RECEIVE;
	}

	if (msg->thumb_size > 0) {
		remain_size = msg->thumb_size;
		THUMB_MALLOC(buf, remain_size);
		if (buf == NULL) {
			SAFE_FREE(block_buf);
			return MS_MEDIA_ERR_OUT_OF_MEMORY;
		}

		while (remain_size > 0) {
			if (remain_size < THUMB_SOCK_BLOCK_SIZE) {
				block_size = remain_size;
			}
			if ((recv_msg_len = recv(sock, block_buf, block_size, 0)) < 0) {
				thumb_stderror("recv failed");
				SAFE_FREE(buf);
				SAFE_FREE(block_buf);
				return _media_thumb_get_error();
			}
			memcpy(buf+recv_block, block_buf, block_size);
			recv_block += block_size;
			remain_size -= block_size;
		}

		SAFE_FREE(msg->thumb_data);
		THUMB_MALLOC(msg->thumb_data, msg->thumb_size);
		if (msg->thumb_data != NULL) {
			memcpy(msg->thumb_data, buf, msg->thumb_size);
		} else {
			SAFE_FREE(buf);
			SAFE_FREE(block_buf);

			return MS_MEDIA_ERR_OUT_OF_MEMORY;
		}
	}

	SAFE_FREE(buf);
	SAFE_FREE(block_buf);

	return MS_MEDIA_ERR_NONE;
}

int _media_thumb_set_buffer(thumbMsg *req_msg, unsigned char **buf, int *buf_size)
{
	if (req_msg == NULL || buf == NULL)
		return MS_MEDIA_ERR_INVALID_PARAMETER;

	int thumb_data_len = 0;
	int size = 0;
	int header_size = 0;

	header_size = sizeof(thumbMsg) - sizeof(unsigned char *);
	thumb_data_len = req_msg->thumb_size;
	if (thumb_data_len < 0)
		return MS_MEDIA_ERR_INVALID_PARAMETER;

	//thumb_dbg("Basic Size[%d] org_path[%s] dst_path[%s] thumb_data_len[%d]", header_size, req_msg->org_path, req_msg->dst_path, thumb_data_len);

	size = header_size + thumb_data_len;
	THUMB_MALLOC(*buf, size);
	if (*buf == NULL) {
		*buf_size = 0;
		return 0;
	}
	memcpy(*buf, req_msg, header_size);
	if (thumb_data_len > 0)
		memcpy((*buf) + header_size, req_msg->thumb_data, thumb_data_len);

	*buf_size = size;

	return MS_MEDIA_ERR_NONE;
}

int _media_thumb_request(int msg_type, const char *origin_path, char *thumb_path, int max_length, uid_t uid)
{
	int sock = -1;
	struct sockaddr_un serv_addr;
	int recv_str_len = 0;
	int err = MS_MEDIA_ERR_NONE;
	int pid;

	err = ms_ipc_create_client_socket(MS_TIMEOUT_SEC_10, &sock);
	if (err != MS_MEDIA_ERR_NONE) {
		thumb_err("ms_ipc_create_client_socket failed");
		return err;
	}

	memset(&serv_addr, 0, sizeof(serv_addr));
	serv_addr.sun_family = AF_UNIX;
	SAFE_STRLCPY(serv_addr.sun_path, THUMB_IPC_PATH, sizeof(serv_addr.sun_path));

	/* Connecting to the thumbnail server */
	if (connect(sock, (struct sockaddr*)&serv_addr, sizeof(serv_addr)) < 0) {
		thumb_stderror("connect");
		close(sock);
		return MS_MEDIA_ERR_SOCKET_CONN;
	}

	thumbMsg req_msg;
	thumbMsg recv_msg;

	memset((void *)&req_msg, 0, sizeof(thumbMsg));
	memset((void *)&recv_msg, 0, sizeof(thumbMsg));

	/* Get PID of client*/
	pid = getpid();
	req_msg.pid = pid;

	/* Set requset message */
	req_msg.msg_type = msg_type;
	req_msg.uid = uid;
	SAFE_STRLCPY(req_msg.org_path, origin_path, sizeof(req_msg.org_path));
	req_msg.thumb_size = 0;

	unsigned char *buf = NULL;
	int buf_size = 0;
	int header_size = 0;

	header_size = sizeof(thumbMsg) - MAX_PATH_SIZE*2 - sizeof(unsigned char *);
	_media_thumb_set_buffer(&req_msg, &buf, &buf_size);

	if (send(sock, buf, buf_size, 0) != buf_size) {
		thumb_err("sendto failed: %d", errno);
		SAFE_FREE(buf);
		close(sock);
		return MS_MEDIA_ERR_SOCKET_SEND;
	}

	thumb_dbg("Sending msg to thumbnail daemon is successful");

	SAFE_FREE(buf);

	if ((err = _media_thumb_recv_msg(sock, header_size, &recv_msg)) < 0) {
		thumb_err("_media_thumb_recv_msg failed ");
		close(sock);
		return err;
	}

	recv_str_len = strlen(recv_msg.org_path);
	thumb_dbg_slog("recv %s(%d) from thumb daemon is successful", recv_msg.org_path, recv_str_len);

	close(sock);
	SAFE_FREE(recv_msg.thumb_data);

	if (recv_str_len > max_length) {
		thumb_err("user buffer is too small. Output's length is %d", recv_str_len);
		return MS_MEDIA_ERR_INVALID_PARAMETER;
	}

	if (recv_msg.status != MS_MEDIA_ERR_NONE) {
		thumb_err("Failed to make thumbnail");
		return recv_msg.status;
	}

	SAFE_STRLCPY(thumb_path, recv_msg.dst_path, max_length);

	return MS_MEDIA_ERR_NONE;
}

gboolean _media_thumb_write_socket(GIOChannel *src, GIOCondition condition, gpointer data)
{
	thumbMsg recv_msg;
	int header_size = 0;
	int sock = 0;
	int err = MS_MEDIA_ERR_NONE;

	memset((void *)&recv_msg, 0, sizeof(thumbMsg));
	sock = g_io_channel_unix_get_fd(src);

	header_size = sizeof(thumbMsg) - sizeof(unsigned char *);

	thumb_err("_media_thumb_write_socket socket : %d", sock);

	if ((err = _media_thumb_recv_msg(sock, header_size, &recv_msg)) < 0) {
		thumb_err("_media_thumb_recv_msg failed ");
		__media_thumb_pop();

		return FALSE;
	}

	if (recv_msg.status != MS_MEDIA_ERR_NONE) {
		err = recv_msg.status;
		thumb_err("Failed to make thumbnail (%d)", err);
	}

	if (__media_thumb_check_cancel()) {
		if (data) {
			thumbUserData* cb = (thumbUserData*)data;
			if (cb->func != NULL)
				cb->func(err, recv_msg.dst_path, cb->user_data);
		}
	}

	__media_thumb_pop();

	thumb_dbg("Done");

	return FALSE;
}

gboolean _media_thumb_raw_data_write_socket(GIOChannel *src, GIOCondition condition, gpointer data)
{
	thumbMsg recv_msg;
	int header_size = 0;
	int sock = 0;
	int err = MS_MEDIA_ERR_NONE;

	memset((void *)&recv_msg, 0, sizeof(thumbMsg));
	sock = g_io_channel_unix_get_fd(src);

	header_size = sizeof(thumbMsg) - sizeof(unsigned char *);

	thumb_err("_media_thumb_write_socket socket : %d", sock);

	if ((err = _media_thumb_recv_msg(sock, header_size, &recv_msg)) < 0) {
		thumb_err("_media_thumb_recv_msg failed ");
		__media_thumb_pop_raw_data();

		return FALSE;
	}

	if (recv_msg.status != MS_MEDIA_ERR_NONE) {
		err = recv_msg.status;
		thumb_err("Failed to make thumbnail (%d)", err);
	}

	if (__media_thumb_check_cancel_for_raw()) {
		if (data) {
			thumbRawUserData* cb = (thumbRawUserData*)data;
			if (cb->func != NULL)
				cb->func(err, recv_msg.request_id, recv_msg.org_path, recv_msg.thumb_width, recv_msg.thumb_height, recv_msg.thumb_data, recv_msg.thumb_size, cb->user_data);
		}
	}

	__media_thumb_pop_raw_data();

	thumb_dbg("Done");

	return FALSE;
}

static int _media_thumb_send_request()
{
	int err = MS_MEDIA_ERR_NONE;
	int sock = -1;
	struct sockaddr_un serv_addr;
	thumbReq *req_manager = NULL;
	int pid;

	err = ms_ipc_create_client_socket(MS_TIMEOUT_SEC_10, &sock);
	if (err != MS_MEDIA_ERR_NONE) {
		thumb_err("ms_ipc_create_client_socket failed");
		return err;
	}

	memset(&serv_addr, 0, sizeof(serv_addr));
	serv_addr.sun_family = AF_UNIX;
	SAFE_STRLCPY(serv_addr.sun_path, THUMB_IPC_PATH, sizeof(serv_addr.sun_path));

	GIOChannel *channel = NULL;
	channel = g_io_channel_unix_new(sock);
	int source_id = -1;

	/* Connecting to the thumbnail server */
	if (connect(sock, (struct sockaddr*)&serv_addr, sizeof(serv_addr)) < 0) {
		thumb_stderror("connect");
		if (errno == EACCES)
			err = MS_MEDIA_ERR_PERMISSION_DENIED;
		else
			err = MS_MEDIA_ERR_SOCKET_CONN;

		g_io_channel_shutdown(channel, TRUE, NULL);
		g_io_channel_unref(channel);
		close(sock);

		return err;
	}

	req_manager = (thumbReq *)g_queue_peek_head(g_manage_queue);

	if (req_manager == NULL) {
		thumb_err("queue peek fail");
		g_io_channel_shutdown(channel, TRUE, NULL);
		g_io_channel_unref(channel);
		close(sock);
		return MS_MEDIA_ERR_INVALID_PARAMETER;
	}

	GSource *source = NULL;
	source = g_io_create_watch(channel, G_IO_IN);
	g_source_set_callback(source, (GSourceFunc)_media_thumb_write_socket, req_manager->userData, NULL);
	source_id = g_source_attach(source, g_main_context_get_thread_default());

	thumbMsg req_msg;
	memset((void *)&req_msg, 0, sizeof(thumbMsg));

	pid = getpid();
	req_msg.pid = pid;
	req_msg.msg_type = req_manager->msg_type;
	req_msg.request_id = 0;
	req_msg.uid = req_manager->uid;
	SAFE_STRLCPY(req_msg.org_path, req_manager->path, sizeof(req_msg.org_path));
	req_msg.dst_path[0] = '\0';
	req_msg.thumb_size = 0;

	unsigned char *buf = NULL;
	int buf_size = 0;
	_media_thumb_set_buffer(&req_msg, &buf, &buf_size);

	if (send(sock, buf, buf_size, 0) != buf_size) {
		thumb_err("sendto failed: %d", errno);
		SAFE_FREE(buf);
		g_source_destroy(g_main_context_find_source_by_id(g_main_context_get_thread_default(), source_id));
		g_io_channel_shutdown(channel, TRUE, NULL);
		g_io_channel_unref(channel);
		close(sock);
		return MS_MEDIA_ERR_SOCKET_SEND;
	}

	SAFE_FREE(buf);
	thumb_dbg("Sending msg to thumbnail daemon is successful");

	if (req_manager->msg_type == THUMB_REQUEST_DB_INSERT) {
		req_manager->channel = channel;
		req_manager->source_id = source_id;
		req_manager->isRequested = true;
	}

	return err;
}

static int _media_thumb_raw_data_send_request()
{
	int err = MS_MEDIA_ERR_NONE;
	int sock = -1;
	struct sockaddr_un serv_addr;
	thumbRawReq *req_manager = NULL;
	int pid;

	err = ms_ipc_create_client_socket(MS_TIMEOUT_SEC_10, &sock);
	if (err != MS_MEDIA_ERR_NONE) {
		thumb_err("ms_ipc_create_client_socket failed");
		return err;
	}

	memset(&serv_addr, 0, sizeof(serv_addr));
	serv_addr.sun_family = AF_UNIX;
	SAFE_STRLCPY(serv_addr.sun_path, THUMB_IPC_PATH, sizeof(serv_addr.sun_path));

	GIOChannel *channel = NULL;
	channel = g_io_channel_unix_new(sock);
	int source_id = -1;

	/* Connecting to the thumbnail server */
	if (connect(sock, (struct sockaddr*)&serv_addr, sizeof(serv_addr)) < 0) {
		thumb_stderror("connect error");
		if (errno == EACCES)
			err = MS_MEDIA_ERR_PERMISSION_DENIED;
		else
			err = MS_MEDIA_ERR_SOCKET_CONN;

		g_io_channel_shutdown(channel, TRUE, NULL);
		g_io_channel_unref(channel);
		close(sock);
		return err;
	}

	req_manager = (thumbRawReq *)g_queue_peek_head(g_manage_raw_queue);

	if (req_manager == NULL) {
		thumb_err("queue peek fail");
		g_io_channel_shutdown(channel, TRUE, NULL);
		g_io_channel_unref(channel);
		close(sock);
		return MS_MEDIA_ERR_INVALID_PARAMETER;
	}

	GSource *source = NULL;
	source = g_io_create_watch(channel, G_IO_IN);
	g_source_set_callback(source, (GSourceFunc)_media_thumb_raw_data_write_socket, req_manager->userData, NULL);
	source_id = g_source_attach(source, g_main_context_get_thread_default());

	thumbMsg req_msg;
	memset((void *)&req_msg, 0, sizeof(thumbMsg));

	pid = getpid();
	req_msg.pid = pid;
	req_msg.msg_type = req_manager->msg_type;
	req_msg.request_id = req_manager->request_id;
	req_msg.thumb_width = req_manager->width;
	req_msg.thumb_height = req_manager->height;
	req_msg.uid = req_manager->uid;

	SAFE_STRLCPY(req_msg.org_path, req_manager->path, sizeof(req_msg.org_path));
	req_msg.dst_path[0] = '\0';
	req_msg.thumb_size = 0;

	unsigned char *buf = NULL;
	int buf_size = 0;
	_media_thumb_set_buffer(&req_msg, &buf, &buf_size);

	if (send(sock, buf, buf_size, 0) != buf_size) {
		thumb_err("sendto failed: %d", errno);
		SAFE_FREE(buf);
		g_source_destroy(g_main_context_find_source_by_id(g_main_context_get_thread_default(), source_id));
		g_io_channel_shutdown(channel, TRUE, NULL);
		g_io_channel_unref(channel);
		return MS_MEDIA_ERR_SOCKET_SEND;
	}

	SAFE_FREE(buf);

	if (req_manager->msg_type == THUMB_REQUEST_RAW_DATA) {
		req_manager->channel = channel;
		req_manager->source_id = source_id;
		req_manager->isRequested = true;
	}
	return MS_MEDIA_ERR_NONE;
}

int _media_thumb_request_async(int msg_type, unsigned int request_id, const char *origin_path, thumbUserData *userData, uid_t uid)
{
	int err = MS_MEDIA_ERR_NONE;
	int len = 0;

	if (msg_type == THUMB_REQUEST_CANCEL_MEDIA)
		return __media_thumb_cancel(request_id);

	if (g_manage_queue == NULL)
		g_manage_queue = g_queue_new();

	thumbReq *thumb_req = NULL;
	THUMB_MALLOC(thumb_req, sizeof(thumbReq));
	thumb_retvm_if(thumb_req == NULL, MS_MEDIA_ERR_INVALID_PARAMETER, "Failed to create request element");

	thumb_req->msg_type = msg_type;
	thumb_req->path = g_strdup(origin_path);
	thumb_req->userData = userData;
	thumb_req->isCanceled = false;
	thumb_req->isRequested = false;
	thumb_req->request_id = request_id;
	thumb_req->uid = uid;

	len = g_queue_get_length(g_manage_queue);
	g_queue_push_tail(g_manage_queue, (gpointer)thumb_req);

	if (len == 0)
		err = _media_thumb_send_request();

	return err;
}

int _media_thumb_request_raw_data_async(int msg_type, int request_id, const char *origin_path, int width, int height, thumbRawUserData *userData, uid_t uid)
{
	int err = MS_MEDIA_ERR_NONE;
	int len = 0;
	thumbRawReq *thumb_req = NULL;

	if (msg_type == THUMB_REQUEST_CANCEL_RAW_DATA)
		return __media_thumb_cancel_raw_data(request_id);

	if (g_manage_raw_queue == NULL)
		g_manage_raw_queue = g_queue_new();

	THUMB_MALLOC(thumb_req, sizeof(thumbRawReq));
	if (thumb_req == NULL) {
		thumb_err("Failed to create request element");
		return MS_MEDIA_ERR_INVALID_PARAMETER;
	}

	thumb_req->msg_type = msg_type;
	thumb_req->request_id = request_id;
	thumb_req->path = g_strdup(origin_path);
	thumb_req->width = width;
	thumb_req->height = height;
	thumb_req->userData = userData;
	thumb_req->isCanceled = false;
	thumb_req->isRequested = false;
	thumb_req->uid = uid;

	len = g_queue_get_length(g_manage_raw_queue);
	g_queue_push_tail(g_manage_raw_queue, (gpointer)thumb_req);

	if (len == 0)
		err = _media_thumb_raw_data_send_request();

	return err;
}

int _media_thumb_request_cancel_all()
{
	if (g_manage_raw_queue != NULL) {
		while (g_queue_get_length(g_manage_raw_queue) > 0) {
			thumbRawReq *req = (thumbRawReq *)g_queue_peek_tail(g_manage_raw_queue);
			if (req != NULL) {
				if (req->isRequested == true) {
					req->isCanceled = true;
					thumb_dbg("Last item!!");

					break;
				} else {
					g_queue_pop_tail(g_manage_raw_queue);

					SAFE_FREE(req->path);
					SAFE_FREE(req->userData);
					SAFE_FREE(req);
				}
			} else {
				thumb_dbg("Queue is empty!!");
				break;
			}
		}
	}

	return MS_MEDIA_ERR_NONE;
}