複雑なXMLデータの解析が必要なプロジェクトがあります。私は一緒に行くことにしました、XML::Twig
そしてそれはほとんどの部分で本当にうまくいきます。異なる情報が同じタグ名を持っているが、パスが異なるという問題に遭遇しました。DateOfBirth
が2つの異なるフィールドに使用される以下のようなもの。
<doc:DForm xmlns:doc="urn:xml-gov-au:...">
<doc:PersonsDetails>
<doc:GivenName LanguageIdentifier="" LanguageLocaleIdentifier="">
John
</doc:GivenName>
<doc:Surname LanguageIdentifier="" LanguageLocaleIdentifier="">
Citizen
</doc:Surname>
<doc:DateOfBirth LanguageIdentifier="" LanguageLocaleIdentifier="">
2012-06-14
</doc:DateOfBirth>
</doc:PersonsDetails>
<doc:SupportingInformation>
<doc:NumberOfSiblings>
5.00
</doc:NumberOfSiblings>
<doc:SiblingsDetails>
<doc:DateOfBirth LanguageIdentifier="" LanguageLocaleIdentifier="">
2009-03-18
</doc:DateOfBirth>
<doc:Name LanguageIdentifier="" LanguageLocaleIdentifier="">
James Citizen</doc:Name>
</doc:SiblingsDetails>
<doc:SiblingsDetails>
<doc:DateOfBirth LanguageIdentifier="" LanguageLocaleIdentifier="">
2006-08-17
</doc:DateOfBirth>
<doc:Name LanguageIdentifier="" LanguageLocaleIdentifier="">
Jane Citizen
</doc:Name>
</doc:SiblingsDetails>
<doc:Address>
<doc:Street>25 test street<doc:Street>
<doc:City>Melbourne <doc:City>
<doc:PostalCode>3000<doc:PostalCode>
<doc:Address>
</doc:SupportingInformation>
</doc:MCCPDForm>
さまざまな情報を処理するためにいくつかのハンドラーを設定しましたが、兄弟の詳細は必要なかったため、フィールドをXML要素にマップする2レベルのハッシュに基づいて最後に処理されていました。
サンプル:
my %field = (
"DetDateOfBirth" => {
"type" => "Date",
"value" => undef,
"dbfield" => "DetDateOfBirth",
},
)
したがって、兄弟のDOBが処理されているときは、上記のハッシュ要素を使用して設定されますが、人のdobが処理されたときは、すでに値が存在するため、次の要素に移動します。
そこで、別のハンドラーを設定し、情報が前に処理されることを確認しました。
ここで問題となるのは、同じ名前が複数の要素に使用されているが、パスが異なる場合が複数あると想像してみてください。より多くのハンドラーを作成するだけですか、それともこの種の状況をより適切に管理する別の方法がありますか。
関連するコード:
my $namespace = "doc";
my $formname = "DForm";
enter code here
my $twig = XML::Twig->new(
pretty_print => 'indented',
twig_handlers => {
"$namespace:${formname}/$namespace:PersonsDetails/$namespace:Address" =>
\&ProcessAddress,
"$namespace:${formname}/$namespace:SupportingInformation" =>
\&ProcessSupportingInformation,
"bie1:PdfFile" => \&DecodePDF,
"$namespace:${formname}" => \&ProcessRecord,
}
);
sub ProcessRecord {
my $twg = shift;
my $record = shift;
my $fld;
my $value;
my $irn;
my $elt = $record;
while ( $elt = $elt->next_elt($record) ) {
$fld = $elt->tag();
$fld =~ s/^$namespace\://;
if ( defined $fields{$fld}{"type"} && $elt->text ) {
if ( $fld =~ /NameOfPlaceInstitution|HospitalNameOfBirth/i ) {
next if $elt->text =~ /Other location/i;
}
if ( !defined $fields{$fld}{"value"} ) {
$fields{$fld}{"value"} = $elt->text;
}
}
}
}
sub ProcessSupportingInformation {
my $twg = shift;
my $record = shift;
my $fld;
my $value;
my $parent;
my $elt = $record;
while ( $elt = $elt->next_elt($record) ) {
$fld = $elt->tag();
$fld =~ s/^$namespace\://;
$parent = $elt->parent();
next if ( $fld =~ /PCDATA/ );
if ( defined $fields{$fld}{"type"} && $elt->text ) {
if ( $fld =~ /PlaceOfDeathHospital/i ) {
if ( $elt->text =~ /Other location/i ) {
next;
}
}
if ( $fld =~ /StreetAddress/i ) {
$fields{"StreetAddressOfPerson"} = $elt->text;
}
else {
if ( !defined $fields{$fld}{"value"} ) {
$fields{$fld}{"value"} = $elt->text;
}
}
}
else {
$record->delete;
}
}
}
参考までに、実際のXMLファイルは約700行で、エンコードされたPDFも含まれています。
別のオプションは、タグをdbフィールドにマップする別のフラグをハッシュに設定し、情報が最初に処理されるときにそれを設定することです。
ありがとう
PS:編集が多すぎて申し訳ありません。私は今それを手に入れたと思います。
PPS:コードとxmlには表示できない機密情報があるため、その一部を編集する必要がありました...