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
|
/*
* Copyright (c) 2007-2012 Zmanda, Inc. All Rights Reserved.
* Copyright (c) 2013-2016 Carbonite, Inc. All Rights Reserved.
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License
* as published by the Free Software Foundation; either version 2
* of the License, or (at your option) any later version.
*
* This program is distributed in the hope that it will be useful, but
* WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
* or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
* for more details.
*
* You should have received a copy of the GNU General Public License along
* with this program; if not, write to the Free Software Foundation, Inc.,
* 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*
* Contact information: Carbonite Inc., 756 N Pastoria Ave
* Sunnyvale, CA 94085, or: http://www.zmanda.com
*/
#include "amglue.h"
#include "conffile.h"
/* PERL_MAGIC_tied is not defined in perl 5.6 */
#if !defined PERL_MAGIC_tied
#define PERL_MAGIC_tied 'P'
#endif
static void
foreach_fn(gpointer key_p, gpointer value_p, gpointer user_data_p)
{
char *key = key_p;
char *value = value_p;
HV *hv = user_data_p;
hv_store(hv, key, strlen(key), newSVpv(value, 0), 0);
}
SV *
g_hash_table_to_hashref(GHashTable *hash)
{
HV *hv = (HV *)sv_2mortal((SV *)newHV());
g_hash_table_foreach(hash, foreach_fn, hv);
return newRV((SV *)hv);
}
static void
foreach_fn_gslist(gpointer key_p, gpointer value_p, gpointer user_data_p)
{
char *key = key_p;
GSList *value_s = value_p;
GSList *value;
HV *hv = user_data_p;
AV *list = newAV();
for(value=value_s; value != NULL; value = value->next) {
av_push(list, newSVpv(value->data, 0));
}
hv_store(hv, key, strlen(key), newRV_noinc((SV*)list), 0);
}
SV *
g_hash_table_to_hashref_gslist(GHashTable *hash)
{
HV *hv = (HV *)sv_2mortal((SV *)newHV());
g_hash_table_foreach(hash, foreach_fn_gslist, hv);
return newRV((SV *)hv);
}
static void
foreach_fn_property(gpointer key_p, gpointer value_p, gpointer user_data_p)
{
char *key = key_p;
property_t *property = value_p;
GSList *value;
HV *hv = user_data_p;
AV *list = newAV();
HV *property_hv = newHV();
SV *val;
hv_store(property_hv, "append", strlen("append"), newSViv(property->append), 0);
hv_store(property_hv, "visible", strlen("visible"), newSViv(property->visible), 0);
hv_store(property_hv, "priority", strlen("priority"), newSViv(property->priority), 0);
for(value=property->values; value != NULL; value = value->next) {
av_push(list, newSVpv(value->data, 0));
}
hv_store(property_hv, "values", strlen("values"), newRV_noinc((SV*)list), 0);
val = newRV_noinc((SV*)property_hv);
hv_store(hv, key, strlen(key), val, 0);
mg_set(val);
SvREFCNT_dec(val);
}
SV *
g_hash_table_to_hashref_property(GHashTable *hash)
{
HV *hv;
HV *stash;
SV *tie;
hv = newHV();
tie = newRV_noinc((SV*)newHV());
stash = gv_stashpv("Amanda::Config::FoldingHash", GV_ADD);
sv_bless(tie, stash);
hv_magic(hv, (GV*)tie, PERL_MAGIC_tied);
hv = (HV *)sv_2mortal((SV *)hv);
g_hash_table_foreach(hash, foreach_fn_property, hv);
return newRV((SV *)hv);
}
|