1 /*
2     clsync - file tree sync utility based on inotify
3 
4     Copyright (C) 2013  Dmitry Yu Okunev <dyokunev@ut.mephi.ru> 0x8E30679C
5 
6     This program is free software: you can redistribute it and/or modify
7     it under the terms of the GNU General Public License as published by
8     the Free Software Foundation, either version 3 of the License, or
9     (at your option) any later version.
10 
11     This program is distributed in the hope that it will be useful,
12     but WITHOUT ANY WARRANTY; without even the implied warranty of
13     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14     GNU General Public License for more details.
15 
16     You should have received a copy of the GNU General Public License
17     along with this program.  If not, see <http://www.gnu.org/licenses/>.
18  */
19 
20 
21 #include "common.h"
22 #include "glibex.h"
23 
24 struct keyvalue_copy_arg {
25 //	GHashTable *ht_src;
26 	GHashTable *ht_dst;
27 	GDupFunc k_dup_funct;
28 	GDupFunc v_dup_funct;
29 };
30 
g_hash_table_foreach_keyvalue_copy(gpointer k,gpointer v,gpointer arg_gp)31 void g_hash_table_foreach_keyvalue_copy(gpointer k, gpointer v, gpointer arg_gp) {
32 //	GHashTable *ht_src	= ((struct keyvalue_copy_arg *)arg_gp)->ht_src;
33 	GHashTable *ht_dst	= ((struct keyvalue_copy_arg *)arg_gp)->ht_dst;
34 	GDupFunc k_dup_funct	= ((struct keyvalue_copy_arg *)arg_gp)->k_dup_funct;
35 	GDupFunc v_dup_funct	= ((struct keyvalue_copy_arg *)arg_gp)->v_dup_funct;
36 
37 	g_hash_table_insert(ht_dst, k_dup_funct(k), v_dup_funct(v));
38 
39 	return;
40 }
41 
g_hash_table_dup(GHashTable * ht,GHashFunc hash_funct,GEqualFunc key_equal_funct,GDestroyNotify key_destroy_funct,GDestroyNotify value_destroy_funct,GDupFunc key_dup_funct,GDupFunc value_dup_funct)42 GHashTable *g_hash_table_dup(GHashTable *ht, GHashFunc hash_funct, GEqualFunc key_equal_funct, GDestroyNotify key_destroy_funct, GDestroyNotify value_destroy_funct, GDupFunc key_dup_funct, GDupFunc value_dup_funct) {
43 	GHashTable *ht_dup = g_hash_table_new_full(hash_funct, key_equal_funct, key_destroy_funct, value_destroy_funct);
44 
45 	struct keyvalue_copy_arg arg;
46 //	arg.ht_src = ht;
47 	arg.ht_dst = ht_dup;
48 	arg.k_dup_funct =   key_dup_funct;
49 	arg.v_dup_funct = value_dup_funct;
50 
51 	g_hash_table_foreach(ht, g_hash_table_foreach_keyvalue_copy, &arg);
52 
53 	return ht_dup;
54 }
55 
56