Короче говоря, вам нужно сделать:
- Преобразование формата XSD в хеш-структуру Perl
- Построить этот хэш, заполнить данные
- Преобразование хэша в XML
Необходимые пакеты:
- XML :: Компиляция :: Схема
- XML :: Libxml :: Document
Следующий код создает структуру Perl из определения XSD.
use XML::Compile::Schema;
use Data::Dumper;
my $filename = $ARGV[0] || "";
if(!$filename){
warn "Please provide the WSDL definition file.";
exit 10;
}
my $schema = XML::Compile::Schema->new($filename);
my $hash;
print Dumper $schema->template('PERL' => 'Application');
Тогда структура данных Perl, созданная этой программой, выглядит так:
{
MakeName =>
{
UniqueID => "anything",
_ => "example", },
MakeDetails =>
{
Name =>
{
UniqueID => "anything",
_ => "example", },
},
};
Таким образом, остальная часть вашей работы создаст ту же структуру в вашей программе, заполнив содержимое, например:
my $hash = {
MakeName => {
UniqueID => 'xxxx',
_ => 'Name of the Make',
},
OtherFields => foo_bar_get_other_hash(),
};
....
## breathtaking moment, create the XML from this $hash
my $schema = XML::Compile::Schema->new("/opt/data/your.xsd");
my $doc = XML::LibXML::Document->new();
my $writer = $schema->compile(WRITER => 'Application');
my $xml;
## Create $xml in the memory based on the Schema and your $hash
eval{ $xml = $writer->($doc, $hash);};
if($@){
# Useful if the format is invalid against the Schema definition
# Or if there are other errors may occurs
$err_msg = $@->{message}->toString();
return ("", $err_msg);
}
## If you want save this $xml to file, convert it to string format first
$doc->setDocumentElement($xml);
my $ori_content = $doc->toString(1);
## Now $ori_content holds the full XML content.