#!/usr/bin/env perl
use
open
':std'
,
':locale'
;
$| = 1;
my
$codeset
= langinfo(CODESET);
if
(
$codeset
ne
""
) {
@ARGV
=
map
{ decode
$codeset
,
$_
}
@ARGV
;
}
my
$SUFFIX
=
"\n"
;
my
$PREFIX
=
""
;
my
$quiet
= 0;
my
@paths
;
PARSE:
while
((
@ARGV
>= 1) && (
$ARGV
[0] =~ /^-./ )) {
OPTIONS: {
if
(
$ARGV
[0] eq
"-e"
) {
shift
;
push
@paths
,
shift
;
last
OPTIONS;
}
if
(
$ARGV
[0] eq
"-q"
) {
$quiet
= 1;
shift
;
last
OPTIONS;
}
if
(
$ARGV
[0] eq
"-p"
) {
shift
;
$PREFIX
=
shift
;
last
OPTIONS;
}
if
(
$ARGV
[0] eq
"-s"
) {
shift
;
$SUFFIX
=
shift
;
last
OPTIONS;
}
if
(
$ARGV
[0] eq
"-n"
) {
$XML::XPath::ParseParamEnt
= 0;
shift
;
last
OPTIONS;
}
print
STDERR
"Unknown option ignore: "
,
shift
;
}
}
unless
(
@paths
>= 1) {
print
STDERR
qq(Usage:
$0 [options] -e query [-e query...] [filename...]
If no filenames are given, supply XML on STDIN. You must provide at
least one query. Each supplementary query is done in order, the
previous query giving the context of the next one.
Options:
-q quiet, only output the resulting PATH.
-s suffix, use suffix instead of linefeed.
-p postfix, use prefix instead of nothing.
-n Don't use an external DTD.
)
;
exit
;
}
do
{
my
(
$xpath
,
$filename
);
my
@curpaths
=
@paths
;
if
(
@ARGV
>= 1) {
$filename
=
shift
@ARGV
;
$xpath
= XML::XPath->new(
filename
=>
$filename
);
}
else
{
$filename
=
'stdin'
;
binmode
STDIN,
':raw'
;
$xpath
= XML::XPath->new(
ioref
=> \
*STDIN
);
}
my
$nodes
=
$xpath
->find(
shift
@curpaths
);
if
(
$nodes
->isa(
'XML::XPath::NodeSet'
)) {
while
(
@curpaths
>= 1) {
$nodes
= find_more(
$xpath
,
shift
@curpaths
,
$nodes
);
last
unless
$nodes
->isa(
'XML::XPath::NodeSet'
);
}
}
if
(
$nodes
->isa(
'XML::XPath::NodeSet'
)) {
if
(
$nodes
->size) {
print
STDERR
"Found "
,
$nodes
->size,
" nodes in $filename:\n"
unless
$quiet
;
foreach
my
$node
(
$nodes
->get_nodelist) {
print
STDERR
"-- NODE --\n"
unless
$quiet
;
print
$PREFIX
,
$node
->toString,
$SUFFIX
;
}
}
else
{
print
STDERR
"No nodes found in $filename\n"
unless
$quiet
;
}
}
else
{
print
STDERR
"Query didn't return a nodeset. Value: "
unless
$quiet
;
print
$nodes
->value,
"\n"
;
}
}
until
(
@ARGV
< 1);
exit
;
sub
find_more {
my
$xpath
=
shift
;
my
$find
=
shift
;
my
(
$nodes
) =
@_
;
my
$newnodes
= XML::XPath::NodeSet->new;
foreach
my
$node
(
$nodes
->get_nodelist) {
my
$new
=
$xpath
->find(
$find
,
$node
);
if
(
$new
->isa(
'XML::XPath::NodeSet'
)) {
$newnodes
->append(
$new
);
}
else
{
warn
"Not a nodeset: "
,
$new
->value,
"\n"
;
}
}
return
$newnodes
;
}