The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.

NAME

Clarity::XOG::Merge - Merge several Clarity XML Open Gateway (XOG) files

SYNOPSIS

Merge several Clarity XOG ("XML Open Gateway") files into one

    use Clarity::XOG::Merge;
    my $merger = Clarity::XOG::Merge->new
                 ( files    => ['t/QA.xml', 't/PS.xml', 't/TJ.xml'],
                   out_file => $out_file );
    $merger->Main;

Or using the frontend tool:

    xogtool merge -i subdir_with_inputfiles -o MERGEDRESULT.xml

ABOUT

Clarity(R) is a project and resource management software from Computer Associates International, Inc.(R), see http://de.wikipedia.org/wiki/Clarity.

It provides data import of so called "XOG" ("XML Open Gateway") files, sometimes historically called "nikureport". Such files are generated for instance by TaskJuggler, see http://www.taskjuggler.org/tj3/manual/nikureport.html.

Sometimes, e.g., when different departments of one company use their own project management software, respectively, such XOG files need to be merged into one before being imported into the central Clarity database.

This module Clarity::XOG::Merge and its frontend tool xogtool) provide that merging.

It is implemented carefully to handle very large files without suffering from memory issues (by using XML::Twig, temp files and doing several passes). So the only restrictions should be the supported max-file-size of your filesystem. (However, please note that importing a large merged XOG file into Clarity can have its own memory issues, due to their import probably being XML-DOM based.)

It is also explicitely polished to work under Windows using Strawberry Perl and being packaged into a single standalone xogtool.exe using PAR (tested with Strawberry Perl 5.8 on Windows XP). A corresponding mkexe.bat file to call the PAR packager is provided.

AUTHOR

Steffen Schwigon, <ss5 at renormalist.net>

BUGS

Please report any bugs or feature requests to bug-clarity-xog-merge at rt.cpan.org, or through the web interface at http://rt.cpan.org/NoAuth/ReportBug.html?Queue=Clarity-XOG-Merge. I will be notified, and then you'll automatically be notified of progress on your bug as I make changes.

COPYRIGHT & LICENSE

Copyright 2010-2011 Steffen Schwigon, all rights reserved.

This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself.