From e36402aead91c157dbefd577cdf463759c2aa045 Mon Sep 17 00:00:00 2001 From: teuf Date: Sun, 25 May 2008 10:38:09 +0000 Subject: * configure.ac: check libxml presence * src/Makefile.am: add new files, remove obsolete ones * src/itdb_plist.h: * src/itdb_plist.c: plist parser, this parses a plist XML file to a GHashTable of GValue *. This parser should be generic, ie it doesn't know it's parsing SysInfoExtended, it only cares about it being a plist file * src/itdb_sysinfo_extended_parser.h: * src/itdb_sysinfo_extended_parser.c: convert the parsed plist data to data structures usable by libgpod * src/itdb_device.h: * src/itdb_device.c: parses SysInfoExtended in addition to SysInfo * src/itdb_sysinfo.c: this hacky parser is obsoleted by the new (much more complete) SysInfoExtended parser, so it's removed * tests/Makefile.am: * tests/test-sysinfo-extended-parsing.c: small test program for the new parser git-svn-id: https://gtkpod.svn.sf.net/svnroot/gtkpod/libgpod/trunk@1980 f01d2545-417e-4e96-918e-98f8d0dbbcb6 --- tests/Makefile.am | 3 +++ tests/test-sysinfo-extended-parsing.c | 24 ++++++++++++++++++++++++ 2 files changed, 27 insertions(+) create mode 100644 tests/test-sysinfo-extended-parsing.c (limited to 'tests') diff --git a/tests/Makefile.am b/tests/Makefile.am index 17c9cb7..f9e003b 100644 --- a/tests/Makefile.am +++ b/tests/Makefile.am @@ -37,9 +37,12 @@ test_checksum_SOURCES = test-checksum.c test_firewire_id_SOURCES = test-fw-id.c +test_sysinfo_extended_parsing_SOURCES = test-sysinfo-extended-parsing.c + get_timezone_SOURCES = get-timezone.c noinst_PROGRAMS=test-itdb test-ls test-checksum test-firewire-id \ + test-sysinfo-extended-parsing \ $(TESTTHUMBS) $(TESTTAGLIB) $(TESTMISC) INCLUDES=$(LIBGPOD_CFLAGS) -I$(top_srcdir)/src -DPACKAGE_LOCALE_DIR=\""$(prefix)/$(DATADIRNAME)/locale"\" diff --git a/tests/test-sysinfo-extended-parsing.c b/tests/test-sysinfo-extended-parsing.c new file mode 100644 index 0000000..86731d1 --- /dev/null +++ b/tests/test-sysinfo-extended-parsing.c @@ -0,0 +1,24 @@ +#include "itdb_sysinfo_extended_parser.h" + +#include +#include + +int main (int argc, char **argv) +{ + SysInfoIpodProperties *props; + + if (argc != 2) + return(1); + + g_type_init (); + props = itdb_sysinfo_extended_parse (argv[1]); + if (props == NULL) { + g_print ("Couldn't parse %s\n", argv[1]); + } + itdb_sysinfo_properties_dump (props); + itdb_sysinfo_properties_free (props); + props = NULL; + + return 0; +} + -- cgit