Balanced.pm
上传用户:market2
上传日期:2018-11-18
资源大小:18786k
文件大小:66k
源码类别:

外挂编程

开发平台:

Windows_Unix

  1. # EXTRACT VARIOUSLY DELIMITED TEXT SEQUENCES FROM STRINGS.
  2. # FOR FULL DOCUMENTATION SEE Balanced.pod
  3. use 5.005;
  4. use strict;
  5. package Text::Balanced;
  6. use Exporter;
  7. use SelfLoader;
  8. use vars qw { $VERSION @ISA %EXPORT_TAGS };
  9. #use version; $VERSION = qv('2.0.0');
  10. $VERSION = '2.0.0';
  11. @ISA = qw ( Exporter );
  12.      
  13. %EXPORT_TAGS = ( ALL => [ qw(
  14. &extract_delimited
  15. &extract_bracketed
  16. &extract_quotelike
  17. &extract_codeblock
  18. &extract_variable
  19. &extract_tagged
  20. &extract_multiple
  21. &gen_delimited_pat
  22. &gen_extract_tagged
  23. &delimited_pat
  24.        ) ] );
  25. Exporter::export_ok_tags('ALL');
  26. # PROTOTYPES
  27. sub _match_bracketed($$$$$$);
  28. sub _match_variable($$);
  29. sub _match_codeblock($$$$$$$);
  30. sub _match_quotelike($$$$);
  31. # HANDLE RETURN VALUES IN VARIOUS CONTEXTS
  32. sub _failmsg {
  33. my ($message, $pos) = @_;
  34. $@ = bless { error=>$message, pos=>$pos }, "Text::Balanced::ErrorMsg";
  35. }
  36. sub _fail
  37. {
  38. my ($wantarray, $textref, $message, $pos) = @_;
  39. _failmsg $message, $pos if $message;
  40. return (undef,$$textref,undef) if $wantarray;
  41. return undef;
  42. }
  43. sub _succeed
  44. {
  45. $@ = undef;
  46. my ($wantarray,$textref) = splice @_, 0, 2;
  47. my ($extrapos, $extralen) = @_>18 ? splice(@_, -2, 2) : (0,0);
  48. my ($startlen, $oppos) = @_[5,6];
  49. my $remainderpos = $_[2];
  50. if ($wantarray)
  51. {
  52. my @res;
  53. while (my ($from, $len) = splice @_, 0, 2)
  54. {
  55. push @res, substr($$textref,$from,$len);
  56. }
  57. if ($extralen) { # CORRECT FILLET
  58. my $extra = substr($res[0], $extrapos-$oppos, $extralen, "n");
  59. $res[1] = "$extra$res[1]";
  60. eval { substr($$textref,$remainderpos,0) = $extra;
  61.        substr($$textref,$extrapos,$extralen,"n")} ;
  62. #REARRANGE HERE DOC AND FILLET IF POSSIBLE
  63. pos($$textref) = $remainderpos-$extralen+1; # RESET G
  64. }
  65. else {
  66. pos($$textref) = $remainderpos;     # RESET G
  67. }
  68. return @res;
  69. }
  70. else
  71. {
  72. my $match = substr($$textref,$_[0],$_[1]);
  73. substr($match,$extrapos-$_[0]-$startlen,$extralen,"") if $extralen;
  74. my $extra = $extralen
  75. ? substr($$textref, $extrapos, $extralen)."n" : "";
  76. eval {substr($$textref,$_[4],$_[1]+$_[5])=$extra} ; #CHOP OUT PREFIX & MATCH, IF POSSIBLE
  77. pos($$textref) = $_[4]; # RESET G
  78. return $match;
  79. }
  80. }
  81. # BUILD A PATTERN MATCHING A SIMPLE DELIMITED STRING
  82. sub gen_delimited_pat($;$)  # ($delimiters;$escapes)
  83. {
  84. my ($dels, $escs) = @_;
  85. return "" unless $dels =~ /S/;
  86. $escs = '\' unless $escs;
  87. $escs .= substr($escs,-1) x (length($dels)-length($escs));
  88. my @pat = ();
  89. my $i;
  90. for ($i=0; $i<length $dels; $i++)
  91. {
  92. my $del = quotemeta substr($dels,$i,1);
  93. my $esc = quotemeta substr($escs,$i,1);
  94. if ($del eq $esc)
  95. {
  96. push @pat, "$del(?:[^$del]*(?:(?:$del$del)[^$del]*)*)$del";
  97. }
  98. else
  99. {
  100. push @pat, "$del(?:[^$esc$del]*(?:$esc.[^$esc$del]*)*)$del";
  101. }
  102. }
  103. my $pat = join '|', @pat;
  104. return "(?:$pat)";
  105. }
  106. *delimited_pat = &gen_delimited_pat;
  107. # THE EXTRACTION FUNCTIONS
  108. sub extract_delimited (;$$$$)
  109. {
  110. my $textref = defined $_[0] ? $_[0] : $_;
  111. my $wantarray = wantarray;
  112. my $del  = defined $_[1] ? $_[1] : qq{'"`};
  113. my $pre  = defined $_[2] ? $_[2] : 's*';
  114. my $esc  = defined $_[3] ? $_[3] : qq{\};
  115. my $pat = gen_delimited_pat($del, $esc);
  116. my $startpos = pos $$textref || 0;
  117. return _fail($wantarray, $textref, "Not a delimited pattern", 0)
  118. unless $$textref =~ m/G($pre)($pat)/gc;
  119. my $prelen = length($1);
  120. my $matchpos = $startpos+$prelen;
  121. my $endpos = pos $$textref;
  122. return _succeed $wantarray, $textref,
  123. $matchpos, $endpos-$matchpos, # MATCH
  124. $endpos,   length($$textref)-$endpos, # REMAINDER
  125. $startpos, $prelen; # PREFIX
  126. }
  127. sub extract_bracketed (;$$$)
  128. {
  129. my $textref = defined $_[0] ? $_[0] : $_;
  130. my $ldel = defined $_[1] ? $_[1] : '{([<';
  131. my $pre  = defined $_[2] ? $_[2] : 's*';
  132. my $wantarray = wantarray;
  133. my $qdel = "";
  134. my $quotelike;
  135. $ldel =~ s/'//g and $qdel .= q{'};
  136. $ldel =~ s/"//g and $qdel .= q{"};
  137. $ldel =~ s/`//g and $qdel .= q{`};
  138. $ldel =~ s/q//g and $quotelike = 1;
  139. $ldel =~ tr/[](){}<>-377/[[(({{<</ds;
  140. my $rdel = $ldel;
  141. unless ($rdel =~ tr/[({</])}>/)
  142.         {
  143. return _fail $wantarray, $textref,
  144.      "Did not find a suitable bracket in delimiter: "$_[1]"",
  145.      0;
  146. }
  147. my $posbug = pos;
  148. $ldel = join('|', map { quotemeta $_ } split('', $ldel));
  149. $rdel = join('|', map { quotemeta $_ } split('', $rdel));
  150. pos = $posbug;
  151. my $startpos = pos $$textref || 0;
  152. my @match = _match_bracketed($textref,$pre, $ldel, $qdel, $quotelike, $rdel);
  153. return _fail ($wantarray, $textref) unless @match;
  154. return _succeed ( $wantarray, $textref,
  155.   $match[2], $match[5]+2, # MATCH
  156.   @match[8,9], # REMAINDER
  157.   @match[0,1], # PREFIX
  158. );
  159. }
  160. sub _match_bracketed($$$$$$) # $textref, $pre, $ldel, $qdel, $quotelike, $rdel
  161. {
  162. my ($textref, $pre, $ldel, $qdel, $quotelike, $rdel) = @_;
  163. my ($startpos, $ldelpos, $endpos) = (pos $$textref = pos $$textref||0);
  164. unless ($$textref =~ m/G$pre/gc)
  165. {
  166. _failmsg "Did not find prefix: /$pre/", $startpos;
  167. return;
  168. }
  169. $ldelpos = pos $$textref;
  170. unless ($$textref =~ m/G($ldel)/gc)
  171. {
  172. _failmsg "Did not find opening bracket after prefix: "$pre"",
  173.          pos $$textref;
  174. pos $$textref = $startpos;
  175. return;
  176. }
  177. my @nesting = ( $1 );
  178. my $textlen = length $$textref;
  179. while (pos $$textref < $textlen)
  180. {
  181. next if $$textref =~ m/G\./gcs;
  182. if ($$textref =~ m/G($ldel)/gc)
  183. {
  184. push @nesting, $1;
  185. }
  186. elsif ($$textref =~ m/G($rdel)/gc)
  187. {
  188. my ($found, $brackettype) = ($1, $1);
  189. if ($#nesting < 0)
  190. {
  191. _failmsg "Unmatched closing bracket: "$found"",
  192.  pos $$textref;
  193. pos $$textref = $startpos;
  194.         return;
  195. }
  196. my $expected = pop(@nesting);
  197. $expected =~ tr/({[</)}]>/;
  198. if ($expected ne $brackettype)
  199. {
  200. _failmsg qq{Mismatched closing bracket: expected "$expected" but found "$found"},
  201.  pos $$textref;
  202. pos $$textref = $startpos;
  203.         return;
  204. }
  205. last if $#nesting < 0;
  206. }
  207. elsif ($qdel && $$textref =~ m/G([$qdel])/gc)
  208. {
  209. $$textref =~ m/G[^\$1]*(?:\.[^\$1]*)*(Q$1E)/gsc and next;
  210. _failmsg "Unmatched embedded quote ($1)",
  211.  pos $$textref;
  212. pos $$textref = $startpos;
  213. return;
  214. }
  215. elsif ($quotelike && _match_quotelike($textref,"",1,0))
  216. {
  217. next;
  218. }
  219. else { $$textref =~ m/G(?:[a-zA-Z0-9]+|.)/gcs }
  220. }
  221. if ($#nesting>=0)
  222. {
  223. _failmsg "Unmatched opening bracket(s): "
  224. . join("..",@nesting)."..",
  225.          pos $$textref;
  226. pos $$textref = $startpos;
  227. return;
  228. }
  229. $endpos = pos $$textref;
  230. return (
  231. $startpos,  $ldelpos-$startpos, # PREFIX
  232. $ldelpos,   1, # OPENING BRACKET
  233. $ldelpos+1, $endpos-$ldelpos-2, # CONTENTS
  234. $endpos-1,  1, # CLOSING BRACKET
  235. $endpos,    length($$textref)-$endpos, # REMAINDER
  236.        );
  237. }
  238. sub _revbracket($)
  239. {
  240. my $brack = reverse $_[0];
  241. $brack =~ tr/[({</])}>/;
  242. return $brack;
  243. }
  244. my $XMLNAME = q{[a-zA-Z_:][a-zA-Z0-9_:.-]*};
  245. sub extract_tagged (;$$$$$) # ($text, $opentag, $closetag, $pre, %options)
  246. {
  247. my $textref = defined $_[0] ? $_[0] : $_;
  248. my $ldel    = $_[1];
  249. my $rdel    = $_[2];
  250. my $pre     = defined $_[3] ? $_[3] : 's*';
  251. my %options = defined $_[4] ? %{$_[4]} : ();
  252. my $omode   = defined $options{fail} ? $options{fail} : '';
  253. my $bad     = ref($options{reject}) eq 'ARRAY' ? join('|', @{$options{reject}})
  254.     : defined($options{reject})        ? $options{reject}
  255.     :  ''
  256.     ;
  257. my $ignore  = ref($options{ignore}) eq 'ARRAY' ? join('|', @{$options{ignore}})
  258.     : defined($options{ignore})        ? $options{ignore}
  259.     :  ''
  260.     ;
  261. if (!defined $ldel) { $ldel = '<w+(?:' . gen_delimited_pat(q{'"}) . '|[^>])*>'; }
  262. $@ = undef;
  263. my @match = _match_tagged($textref, $pre, $ldel, $rdel, $omode, $bad, $ignore);
  264. return _fail(wantarray, $textref) unless @match;
  265. return _succeed wantarray, $textref,
  266. $match[2], $match[3]+$match[5]+$match[7], # MATCH
  267. @match[8..9,0..1,2..7]; # REM, PRE, BITS
  268. }
  269. sub _match_tagged # ($$$$$$$)
  270. {
  271. my ($textref, $pre, $ldel, $rdel, $omode, $bad, $ignore) = @_;
  272. my $rdelspec;
  273. my ($startpos, $opentagpos, $textpos, $parapos, $closetagpos, $endpos) = ( pos($$textref) = pos($$textref)||0 );
  274. unless ($$textref =~ m/G($pre)/gc)
  275. {
  276. _failmsg "Did not find prefix: /$pre/", pos $$textref;
  277. goto failed;
  278. }
  279. $opentagpos = pos($$textref);
  280. unless ($$textref =~ m/G$ldel/gc)
  281. {
  282. _failmsg "Did not find opening tag: /$ldel/", pos $$textref;
  283. goto failed;
  284. }
  285. $textpos = pos($$textref);
  286. if (!defined $rdel)
  287. {
  288. $rdelspec = substr($$textref, $-[0], $+[0] - $-[0]);
  289. unless ($rdelspec =~ s/A([[(<{]+)($XMLNAME).*/ quotemeta "$1/$2". _revbracket($1) /oes)
  290. {
  291. _failmsg "Unable to construct closing tag to match: $rdel",
  292.  pos $$textref;
  293. goto failed;
  294. }
  295. }
  296. else
  297. {
  298. $rdelspec = eval "qq{$rdel}" || do {
  299. my $del;
  300. for (qw,~ ! ^ & * ) _ + - = } ] : " ; ' > . ? / | ',)
  301. { next if $rdel =~ /Q$_/; $del = $_; last }
  302. unless ($del) {
  303. use Carp;
  304. croak "Can't interpolate right delimiter $rdel"
  305. }
  306. eval "qq$del$rdel$del";
  307. };
  308. }
  309. while (pos($$textref) < length($$textref))
  310. {
  311. next if $$textref =~ m/G\./gc;
  312. if ($$textref =~ m/G(n[ t]*n)/gc )
  313. {
  314. $parapos = pos($$textref) - length($1)
  315. unless defined $parapos;
  316. }
  317. elsif ($$textref =~ m/G($rdelspec)/gc )
  318. {
  319. $closetagpos = pos($$textref)-length($1);
  320. goto matched;
  321. }
  322. elsif ($ignore && $$textref =~ m/G(?:$ignore)/gc)
  323. {
  324. next;
  325. }
  326. elsif ($bad && $$textref =~ m/G($bad)/gcs)
  327. {
  328. pos($$textref) -= length($1); # CUT OFF WHATEVER CAUSED THE SHORTNESS
  329. goto short if ($omode eq 'PARA' || $omode eq 'MAX');
  330. _failmsg "Found invalid nested tag: $1", pos $$textref;
  331. goto failed;
  332. }
  333. elsif ($$textref =~ m/G($ldel)/gc)
  334. {
  335. my $tag = $1;
  336. pos($$textref) -= length($tag); # REWIND TO NESTED TAG
  337. unless (_match_tagged(@_)) # MATCH NESTED TAG
  338. {
  339. goto short if $omode eq 'PARA' || $omode eq 'MAX';
  340. _failmsg "Found unbalanced nested tag: $tag",
  341.  pos $$textref;
  342. goto failed;
  343. }
  344. }
  345. else { $$textref =~ m/./gcs }
  346. }
  347. short:
  348. $closetagpos = pos($$textref);
  349. goto matched if $omode eq 'MAX';
  350. goto failed unless $omode eq 'PARA';
  351. if (defined $parapos) { pos($$textref) = $parapos }
  352. else       { $parapos = pos($$textref) }
  353. return (
  354. $startpos,    $opentagpos-$startpos, # PREFIX
  355. $opentagpos,  $textpos-$opentagpos, # OPENING TAG
  356. $textpos,     $parapos-$textpos, # TEXT
  357. $parapos,     0, # NO CLOSING TAG
  358. $parapos,     length($$textref)-$parapos, # REMAINDER
  359.        );
  360. matched:
  361. $endpos = pos($$textref);
  362. return (
  363. $startpos,    $opentagpos-$startpos, # PREFIX
  364. $opentagpos,  $textpos-$opentagpos, # OPENING TAG
  365. $textpos,     $closetagpos-$textpos, # TEXT
  366. $closetagpos, $endpos-$closetagpos, # CLOSING TAG
  367. $endpos,      length($$textref)-$endpos, # REMAINDER
  368.        );
  369. failed:
  370. _failmsg "Did not find closing tag", pos $$textref unless $@;
  371. pos($$textref) = $startpos;
  372. return;
  373. }
  374. sub extract_variable (;$$)
  375. {
  376. my $textref = defined $_[0] ? $_[0] : $_;
  377. return ("","","") unless defined $$textref;
  378. my $pre  = defined $_[1] ? $_[1] : 's*';
  379. my @match = _match_variable($textref,$pre);
  380. return _fail wantarray, $textref unless @match;
  381. return _succeed wantarray, $textref,
  382. @match[2..3,4..5,0..1]; # MATCH, REMAINDER, PREFIX
  383. }
  384. sub _match_variable($$)
  385. {
  386. #  $#
  387. #  $^
  388. #  $$
  389. my ($textref, $pre) = @_;
  390. my $startpos = pos($$textref) = pos($$textref)||0;
  391. unless ($$textref =~ m/G($pre)/gc)
  392. {
  393. _failmsg "Did not find prefix: /$pre/", pos $$textref;
  394. return;
  395. }
  396. my $varpos = pos($$textref);
  397.         unless ($$textref =~ m{G$s*(?!::)(d+|[][&`'+*./|,";%=~:?!@<>()-]|^[a-z]?)}gci)
  398. {
  399.     unless ($$textref =~ m/G(($#?|[*@%]|\&)+)/gc)
  400.     {
  401. _failmsg "Did not find leading dereferencer", pos $$textref;
  402. pos $$textref = $startpos;
  403. return;
  404.     }
  405.     my $deref = $1;
  406.     unless ($$textref =~ m/Gs*(?:::|')?(?:[_a-z]w*(?:::|'))*[_a-z]w*/gci
  407.      or _match_codeblock($textref, "", '{', '}', '{', '}', 0)
  408. or $deref eq '$#' or $deref eq '$$' )
  409.     {
  410. _failmsg "Bad identifier after dereferencer", pos $$textref;
  411. pos $$textref = $startpos;
  412. return;
  413.     }
  414. }
  415. while (1)
  416. {
  417. next if $$textref =~ m/Gs*(?:->)?s*[{]w+[}]/gc;
  418. next if _match_codeblock($textref,
  419.  qr/s*->s*(?:[_a-zA-Z]w+s*)?/,
  420.  qr/[({[]/, qr/[)}]]/,
  421.  qr/[({[]/, qr/[)}]]/, 0);
  422. next if _match_codeblock($textref,
  423.  qr/s*/, qr/[{[]/, qr/[}]]/,
  424.  qr/[{[]/, qr/[}]]/, 0);
  425. next if _match_variable($textref,'s*->s*');
  426. next if $$textref =~ m/Gs*->s*w+(?![{([])/gc;
  427. last;
  428. }
  429. my $endpos = pos($$textref);
  430. return ($startpos, $varpos-$startpos,
  431. $varpos,   $endpos-$varpos,
  432. $endpos,   length($$textref)-$endpos
  433. );
  434. }
  435. sub extract_codeblock (;$$$$$)
  436. {
  437. my $textref = defined $_[0] ? $_[0] : $_;
  438. my $wantarray = wantarray;
  439. my $ldel_inner = defined $_[1] ? $_[1] : '{';
  440. my $pre        = defined $_[2] ? $_[2] : 's*';
  441. my $ldel_outer = defined $_[3] ? $_[3] : $ldel_inner;
  442. my $rd         = $_[4];
  443. my $rdel_inner = $ldel_inner;
  444. my $rdel_outer = $ldel_outer;
  445. my $posbug = pos;
  446. for ($ldel_inner, $ldel_outer) { tr/[]()<>{}-377/[[((<<{{/ds }
  447. for ($rdel_inner, $rdel_outer) { tr/[]()<>{}-377/]]))>>}}/ds }
  448. for ($ldel_inner, $ldel_outer, $rdel_inner, $rdel_outer)
  449. {
  450. $_ = '('.join('|',map { quotemeta $_ } split('',$_)).')'
  451. }
  452. pos = $posbug;
  453. my @match = _match_codeblock($textref, $pre,
  454.      $ldel_outer, $rdel_outer,
  455.      $ldel_inner, $rdel_inner,
  456.      $rd);
  457. return _fail($wantarray, $textref) unless @match;
  458. return _succeed($wantarray, $textref,
  459. @match[2..3,4..5,0..1] # MATCH, REMAINDER, PREFIX
  460.        );
  461. }
  462. sub _match_codeblock($$$$$$$)
  463. {
  464. my ($textref, $pre, $ldel_outer, $rdel_outer, $ldel_inner, $rdel_inner, $rd) = @_;
  465. my $startpos = pos($$textref) = pos($$textref) || 0;
  466. unless ($$textref =~ m/G($pre)/gc)
  467. {
  468. _failmsg qq{Did not match prefix /$pre/ at"} .
  469.     substr($$textref,pos($$textref),20) .
  470.     q{..."},
  471.          pos $$textref;
  472. return; 
  473. }
  474. my $codepos = pos($$textref);
  475. unless ($$textref =~ m/G($ldel_outer)/gc) # OUTERMOST DELIMITER
  476. {
  477. _failmsg qq{Did not find expected opening bracket at "} .
  478.      substr($$textref,pos($$textref),20) .
  479.      q{..."},
  480.          pos $$textref;
  481. pos $$textref = $startpos;
  482. return;
  483. }
  484. my $closing = $1;
  485.    $closing =~ tr/([<{/)]>}/;
  486. my $matched;
  487. my $patvalid = 1;
  488. while (pos($$textref) < length($$textref))
  489. {
  490. $matched = '';
  491. if ($rd && $$textref =~ m#G(Q(?)E|Q(s?)E|Q(s)E)#gc)
  492. {
  493. $patvalid = 0;
  494. next;
  495. }
  496. if ($$textref =~ m/Gs*#.*/gc)
  497. {
  498. next;
  499. }
  500. if ($$textref =~ m/Gs*($rdel_outer)/gc)
  501. {
  502. unless ($matched = ($closing && $1 eq $closing) )
  503. {
  504. next if $1 eq '>'; # MIGHT BE A "LESS THAN"
  505. _failmsg q{Mismatched closing bracket at "} .
  506.      substr($$textref,pos($$textref),20) .
  507.      qq{...". Expected '$closing'},
  508.  pos $$textref;
  509. }
  510. last;
  511. }
  512. if (_match_variable($textref,'s*') ||
  513.     _match_quotelike($textref,'s*',$patvalid,$patvalid) )
  514. {
  515. $patvalid = 0;
  516. next;
  517. }
  518. # NEED TO COVER MANY MORE CASES HERE!!!
  519. if ($$textref =~ m#Gs*(?!$ldel_inner)
  520. ( [-+*x/%^&|.]=?
  521. | [!=]~
  522. | =(?!>)
  523. | (**|&&||||<<|>>)=?
  524. | split|grep|map|return
  525. | [([]
  526. )#gcx)
  527. {
  528. $patvalid = 1;
  529. next;
  530. }
  531. if ( _match_codeblock($textref, 's*', $ldel_inner, $rdel_inner, $ldel_inner, $rdel_inner, $rd) )
  532. {
  533. $patvalid = 1;
  534. next;
  535. }
  536. if ($$textref =~ m/Gs*$ldel_outer/gc)
  537. {
  538. _failmsg q{Improperly nested codeblock at "} .
  539.      substr($$textref,pos($$textref),20) .
  540.      q{..."},
  541.  pos $$textref;
  542. last;
  543. }
  544. $patvalid = 0;
  545. $$textref =~ m/Gs*(w+|[-=>]>|.|Z)/gc;
  546. }
  547. continue { $@ = undef }
  548. unless ($matched)
  549. {
  550. _failmsg 'No match found for opening bracket', pos $$textref
  551. unless $@;
  552. return;
  553. }
  554. my $endpos = pos($$textref);
  555. return ( $startpos, $codepos-$startpos,
  556.  $codepos, $endpos-$codepos,
  557.  $endpos,  length($$textref)-$endpos,
  558.        );
  559. }
  560. my %mods   = (
  561. 'none' => '[cgimsox]*',
  562. 'm' => '[cgimsox]*',
  563. 's' => '[cegimsox]*',
  564. 'tr' => '[cds]*',
  565. 'y' => '[cds]*',
  566. 'qq' => '',
  567. 'qx' => '',
  568. 'qw' => '',
  569. 'qr' => '[imsx]*',
  570. 'q' => '',
  571.      );
  572. sub extract_quotelike (;$$)
  573. {
  574. my $textref = $_[0] ? $_[0] : $_;
  575. my $wantarray = wantarray;
  576. my $pre  = defined $_[1] ? $_[1] : 's*';
  577. my @match = _match_quotelike($textref,$pre,1,0);
  578. return _fail($wantarray, $textref) unless @match;
  579. return _succeed($wantarray, $textref,
  580. $match[2], $match[18]-$match[2], # MATCH
  581. @match[18,19], # REMAINDER
  582. @match[0,1], # PREFIX
  583. @match[2..17], # THE BITS
  584. @match[20,21], # ANY FILLET?
  585.        );
  586. };
  587. sub _match_quotelike($$$$) # ($textref, $prepat, $allow_raw_match)
  588. {
  589. my ($textref, $pre, $rawmatch, $qmark) = @_;
  590. my ($textlen,$startpos,
  591.     $oppos,
  592.     $preld1pos,$ld1pos,$str1pos,$rd1pos,
  593.     $preld2pos,$ld2pos,$str2pos,$rd2pos,
  594.     $modpos) = ( length($$textref), pos($$textref) = pos($$textref) || 0 );
  595. unless ($$textref =~ m/G($pre)/gc)
  596. {
  597. _failmsg qq{Did not find prefix /$pre/ at "} .
  598.      substr($$textref, pos($$textref), 20) .
  599.      q{..."},
  600.          pos $$textref;
  601. return; 
  602. }
  603. $oppos = pos($$textref);
  604. my $initial = substr($$textref,$oppos,1);
  605. if ($initial && $initial =~ m|^["'`]|
  606.      || $rawmatch && $initial =~ m|^/|
  607.      || $qmark && $initial =~ m|^?|)
  608. {
  609. unless ($$textref =~ m/ Q$initialE [^\$initial]* (\.[^\$initial]*)* Q$initialE /gcsx)
  610. {
  611. _failmsg qq{Did not find closing delimiter to match '$initial' at "} .
  612.      substr($$textref, $oppos, 20) .
  613.      q{..."},
  614.  pos $$textref;
  615. pos $$textref = $startpos;
  616. return;
  617. }
  618. $modpos= pos($$textref);
  619. $rd1pos = $modpos-1;
  620. if ($initial eq '/' || $initial eq '?') 
  621. {
  622. $$textref =~ m/G$mods{none}/gc
  623. }
  624. my $endpos = pos($$textref);
  625. return (
  626. $startpos, $oppos-$startpos, # PREFIX
  627. $oppos, 0, # NO OPERATOR
  628. $oppos, 1, # LEFT DEL
  629. $oppos+1, $rd1pos-$oppos-1, # STR/PAT
  630. $rd1pos, 1, # RIGHT DEL
  631. $modpos, 0, # NO 2ND LDEL
  632. $modpos, 0, # NO 2ND STR
  633. $modpos, 0, # NO 2ND RDEL
  634. $modpos, $endpos-$modpos, # MODIFIERS
  635. $endpos,  $textlen-$endpos, # REMAINDER
  636.        );
  637. }
  638. unless ($$textref =~ m{G(b(?:m|s|qq|qx|qw|q|qr|tr|y)b(?=s*S)|<<)}gc)
  639. {
  640. _failmsg q{No quotelike operator found after prefix at "} .
  641.      substr($$textref, pos($$textref), 20) .
  642.      q{..."},
  643.          pos $$textref;
  644. pos $$textref = $startpos;
  645. return;
  646. }
  647. my $op = $1;
  648. $preld1pos = pos($$textref);
  649. if ($op eq '<<') {
  650. $ld1pos = pos($$textref);
  651. my $label;
  652. if ($$textref =~ m{G([A-Za-z_]w*)}gc) {
  653. $label = $1;
  654. }
  655. elsif ($$textref =~ m{ G ' ([^'\]* (?:\.[^'\]*)*) '
  656.      | G " ([^"\]* (?:\.[^"\]*)*) "
  657.      | G ` ([^`\]* (?:\.[^`\]*)*) `
  658.      }gcsx) {
  659. $label = $+;
  660. }
  661. else {
  662. $label = "";
  663. }
  664. my $extrapos = pos($$textref);
  665. $$textref =~ m{.*n}gc;
  666. $str1pos = pos($$textref)--;
  667. unless ($$textref =~ m{.*?n(?=Q$labelEn)}gc) {
  668. _failmsg qq{Missing here doc terminator ('$label') after "} .
  669.      substr($$textref, $startpos, 20) .
  670.      q{..."},
  671.  pos $$textref;
  672. pos $$textref = $startpos;
  673. return;
  674. }
  675. $rd1pos = pos($$textref);
  676.         $$textref =~ m{Q$labelEn}gc;
  677. $ld2pos = pos($$textref);
  678. return (
  679. $startpos, $oppos-$startpos, # PREFIX
  680. $oppos, length($op), # OPERATOR
  681. $ld1pos, $extrapos-$ld1pos, # LEFT DEL
  682. $str1pos, $rd1pos-$str1pos, # STR/PAT
  683. $rd1pos, $ld2pos-$rd1pos, # RIGHT DEL
  684. $ld2pos, 0, # NO 2ND LDEL
  685. $ld2pos, 0,                 # NO 2ND STR
  686. $ld2pos, 0,                 # NO 2ND RDEL
  687. $ld2pos, 0,                      # NO MODIFIERS
  688. $ld2pos, $textlen-$ld2pos, # REMAINDER
  689. $extrapos,      $str1pos-$extrapos, # FILLETED BIT
  690.        );
  691. }
  692. $$textref =~ m/Gs*/gc;
  693. $ld1pos = pos($$textref);
  694. $str1pos = $ld1pos+1;
  695. unless ($$textref =~ m/G(S)/gc) # SHOULD USE LOOKAHEAD
  696. {
  697. _failmsg "No block delimiter found after quotelike $op",
  698.          pos $$textref;
  699. pos $$textref = $startpos;
  700. return;
  701. }
  702. pos($$textref) = $ld1pos; # HAVE TO DO THIS BECAUSE LOOKAHEAD BROKEN
  703. my ($ldel1, $rdel1) = ("Q$1","Q$1");
  704. if ($ldel1 =~ /[[(<{]/)
  705. {
  706. $rdel1 =~ tr/[({</])}>/;
  707. defined(_match_bracketed($textref,"",$ldel1,"","",$rdel1))
  708. || do { pos $$textref = $startpos; return };
  709.         $ld2pos = pos($$textref);
  710.         $rd1pos = $ld2pos-1;
  711. }
  712. else
  713. {
  714. $$textref =~ /G$ldel1[^\$ldel1]*(\.[^\$ldel1]*)*$ldel1/gcs
  715. || do { pos $$textref = $startpos; return };
  716.         $ld2pos = $rd1pos = pos($$textref)-1;
  717. }
  718. my $second_arg = $op =~ /s|tr|y/ ? 1 : 0;
  719. if ($second_arg)
  720. {
  721. my ($ldel2, $rdel2);
  722. if ($ldel1 =~ /[[(<{]/)
  723. {
  724. unless ($$textref =~ /Gs*(S)/gc) # SHOULD USE LOOKAHEAD
  725. {
  726. _failmsg "Missing second block for quotelike $op",
  727.  pos $$textref;
  728. pos $$textref = $startpos;
  729. return;
  730. }
  731. $ldel2 = $rdel2 = "Q$1";
  732. $rdel2 =~ tr/[({</])}>/;
  733. }
  734. else
  735. {
  736. $ldel2 = $rdel2 = $ldel1;
  737. }
  738. $str2pos = $ld2pos+1;
  739. if ($ldel2 =~ /[[(<{]/)
  740. {
  741. pos($$textref)--; # OVERCOME BROKEN LOOKAHEAD 
  742. defined(_match_bracketed($textref,"",$ldel2,"","",$rdel2))
  743. || do { pos $$textref = $startpos; return };
  744. }
  745. else
  746. {
  747. $$textref =~ /[^\$ldel2]*(\.[^\$ldel2]*)*$ldel2/gcs
  748. || do { pos $$textref = $startpos; return };
  749. }
  750. $rd2pos = pos($$textref)-1;
  751. }
  752. else
  753. {
  754. $ld2pos = $str2pos = $rd2pos = $rd1pos;
  755. }
  756. $modpos = pos $$textref;
  757. $$textref =~ m/G($mods{$op})/gc;
  758. my $endpos = pos $$textref;
  759. return (
  760. $startpos, $oppos-$startpos, # PREFIX
  761. $oppos, length($op), # OPERATOR
  762. $ld1pos, 1, # LEFT DEL
  763. $str1pos, $rd1pos-$str1pos, # STR/PAT
  764. $rd1pos, 1, # RIGHT DEL
  765. $ld2pos, $second_arg, # 2ND LDEL (MAYBE)
  766. $str2pos, $rd2pos-$str2pos, # 2ND STR (MAYBE)
  767. $rd2pos, $second_arg, # 2ND RDEL (MAYBE)
  768. $modpos, $endpos-$modpos, # MODIFIERS
  769. $endpos, $textlen-$endpos, # REMAINDER
  770.        );
  771. }
  772. my $def_func = 
  773. [
  774. sub { extract_variable($_[0], '') },
  775. sub { extract_quotelike($_[0],'') },
  776. sub { extract_codeblock($_[0],'{}','') },
  777. ];
  778. sub extract_multiple (;$$$$) # ($text, $functions_ref, $max_fields, $ignoreunknown)
  779. {
  780. my $textref = defined($_[0]) ? $_[0] : $_;
  781. my $posbug = pos;
  782. my ($lastpos, $firstpos);
  783. my @fields = ();
  784. #for ($$textref)
  785. {
  786. my @func = defined $_[1] ? @{$_[1]} : @{$def_func};
  787. my $max  = defined $_[2] && $_[2]>0 ? $_[2] : 1_000_000_000;
  788. my $igunk = $_[3];
  789. pos $$textref ||= 0;
  790. unless (wantarray)
  791. {
  792. use Carp;
  793. carp "extract_multiple reset maximal count to 1 in scalar context"
  794. if $^W && defined($_[2]) && $max > 1;
  795. $max = 1
  796. }
  797. my $unkpos;
  798. my $func;
  799. my $class;
  800. my @class;
  801. foreach $func ( @func )
  802. {
  803. if (ref($func) eq 'HASH')
  804. {
  805. push @class, (keys %$func)[0];
  806. $func = (values %$func)[0];
  807. }
  808. else
  809. {
  810. push @class, undef;
  811. }
  812. }
  813. FIELD: while (pos($$textref) < length($$textref))
  814. {
  815. my ($field, $rem);
  816. my @bits;
  817. foreach my $i ( 0..$#func )
  818. {
  819. my $pref;
  820. $func = $func[$i];
  821. $class = $class[$i];
  822. $lastpos = pos $$textref;
  823. if (ref($func) eq 'CODE')
  824. { ($field,$rem,$pref) = @bits = $func->($$textref) }
  825. elsif (ref($func) eq 'Text::Balanced::Extractor')
  826. { @bits = $field = $func->extract($$textref) }
  827. elsif( $$textref =~ m/G$func/gc )
  828. { @bits = $field = defined($1)
  829.                                 ? $1
  830.                                 : substr($$textref, $-[0], $+[0] - $-[0])
  831.                     }
  832. $pref ||= "";
  833. if (defined($field) && length($field))
  834. {
  835. if (!$igunk) {
  836. $unkpos = $lastpos
  837. if length($pref) && !defined($unkpos);
  838. if (defined $unkpos)
  839. {
  840. push @fields, substr($$textref, $unkpos, $lastpos-$unkpos).$pref;
  841. $firstpos = $unkpos unless defined $firstpos;
  842. undef $unkpos;
  843. last FIELD if @fields == $max;
  844. }
  845. }
  846. push @fields, $class
  847. ? bless ($field, $class)
  848. : $field;
  849. $firstpos = $lastpos unless defined $firstpos;
  850. $lastpos = pos $$textref;
  851. last FIELD if @fields == $max;
  852. next FIELD;
  853. }
  854. }
  855. if ($$textref =~ /G(.)/gcs)
  856. {
  857. $unkpos = pos($$textref)-1
  858. unless $igunk || defined $unkpos;
  859. }
  860. }
  861. if (defined $unkpos)
  862. {
  863. push @fields, substr($$textref, $unkpos);
  864. $firstpos = $unkpos unless defined $firstpos;
  865. $lastpos = length $$textref;
  866. }
  867. last;
  868. }
  869. pos $$textref = $lastpos;
  870. return @fields if wantarray;
  871. $firstpos ||= 0;
  872. eval { substr($$textref,$firstpos,$lastpos-$firstpos)="";
  873.        pos $$textref = $firstpos };
  874. return $fields[0];
  875. }
  876. sub gen_extract_tagged # ($opentag, $closetag, $pre, %options)
  877. {
  878. my $ldel    = $_[0];
  879. my $rdel    = $_[1];
  880. my $pre     = defined $_[2] ? $_[2] : 's*';
  881. my %options = defined $_[3] ? %{$_[3]} : ();
  882. my $omode   = defined $options{fail} ? $options{fail} : '';
  883. my $bad     = ref($options{reject}) eq 'ARRAY' ? join('|', @{$options{reject}})
  884.     : defined($options{reject})        ? $options{reject}
  885.     :  ''
  886.     ;
  887. my $ignore  = ref($options{ignore}) eq 'ARRAY' ? join('|', @{$options{ignore}})
  888.     : defined($options{ignore})        ? $options{ignore}
  889.     :  ''
  890.     ;
  891. if (!defined $ldel) { $ldel = '<w+(?:' . gen_delimited_pat(q{'"}) . '|[^>])*>'; }
  892. my $posbug = pos;
  893. for ($ldel, $pre, $bad, $ignore) { $_ = qr/$_/ if $_ }
  894. pos = $posbug;
  895. my $closure = sub
  896. {
  897. my $textref = defined $_[0] ? $_[0] : $_;
  898. my @match = Text::Balanced::_match_tagged($textref, $pre, $ldel, $rdel, $omode, $bad, $ignore);
  899. return _fail(wantarray, $textref) unless @match;
  900. return _succeed wantarray, $textref,
  901. $match[2], $match[3]+$match[5]+$match[7], # MATCH
  902. @match[8..9,0..1,2..7]; # REM, PRE, BITS
  903. };
  904. bless $closure, 'Text::Balanced::Extractor';
  905. }
  906. package Text::Balanced::Extractor;
  907. sub extract($$) # ($self, $text)
  908. {
  909. &{$_[0]}($_[1]);
  910. }
  911. package Text::Balanced::ErrorMsg;
  912. use overload '""' => sub { "$_[0]->{error}, detected at offset $_[0]->{pos}" };
  913. 1;
  914. __END__
  915. =head1 NAME
  916. Text::Balanced - Extract delimited text sequences from strings.
  917. =head1 SYNOPSIS
  918.  use Text::Balanced qw (
  919. extract_delimited
  920. extract_bracketed
  921. extract_quotelike
  922. extract_codeblock
  923. extract_variable
  924. extract_tagged
  925. extract_multiple
  926. gen_delimited_pat
  927. gen_extract_tagged
  928.        );
  929.  # Extract the initial substring of $text that is delimited by
  930.  # two (unescaped) instances of the first character in $delim.
  931. ($extracted, $remainder) = extract_delimited($text,$delim);
  932.  # Extract the initial substring of $text that is bracketed
  933.  # with a delimiter(s) specified by $delim (where the string
  934.  # in $delim contains one or more of '(){}[]<>').
  935. ($extracted, $remainder) = extract_bracketed($text,$delim);
  936.  # Extract the initial substring of $text that is bounded by
  937.  # an XML tag.
  938. ($extracted, $remainder) = extract_tagged($text);
  939.  # Extract the initial substring of $text that is bounded by
  940.  # a C<BEGIN>...C<END> pair. Don't allow nested C<BEGIN> tags
  941. ($extracted, $remainder) =
  942. extract_tagged($text,"BEGIN","END",undef,{bad=>["BEGIN"]});
  943.  # Extract the initial substring of $text that represents a
  944.  # Perl "quote or quote-like operation"
  945. ($extracted, $remainder) = extract_quotelike($text);
  946.  # Extract the initial substring of $text that represents a block
  947.  # of Perl code, bracketed by any of character(s) specified by $delim
  948.  # (where the string $delim contains one or more of '(){}[]<>').
  949. ($extracted, $remainder) = extract_codeblock($text,$delim);
  950.  # Extract the initial substrings of $text that would be extracted by
  951.  # one or more sequential applications of the specified functions
  952.  # or regular expressions
  953. @extracted = extract_multiple($text,
  954.       [ &extract_bracketed,
  955. &extract_quotelike,
  956. &some_other_extractor_sub,
  957. qr/[xyz]*/,
  958. 'literal',
  959.       ]);
  960. # Create a string representing an optimized pattern (a la Friedl)
  961. # that matches a substring delimited by any of the specified characters
  962. # (in this case: any type of quote or a slash)
  963. $patstring = gen_delimited_pat(q{'"`/});
  964. # Generate a reference to an anonymous sub that is just like extract_tagged
  965. # but pre-compiled and optimized for a specific pair of tags, and consequently
  966. # much faster (i.e. 3 times faster). It uses qr// for better performance on
  967. # repeated calls, so it only works under Perl 5.005 or later.
  968. $extract_head = gen_extract_tagged('<HEAD>','</HEAD>');
  969. ($extracted, $remainder) = $extract_head->($text);
  970. =head1 DESCRIPTION
  971. The various C<extract_...> subroutines may be used to
  972. extract a delimited substring, possibly after skipping a
  973. specified prefix string. By default, that prefix is
  974. optional whitespace (C</s*/>), but you can change it to whatever
  975. you wish (see below).
  976. The substring to be extracted must appear at the
  977. current C<pos> location of the string's variable
  978. (or at index zero, if no C<pos> position is defined).
  979. In other words, the C<extract_...> subroutines I<don't>
  980. extract the first occurrence of a substring anywhere
  981. in a string (like an unanchored regex would). Rather,
  982. they extract an occurrence of the substring appearing
  983. immediately at the current matching position in the
  984. string (like a C<G>-anchored regex would).
  985. =head2 General behaviour in list contexts
  986. In a list context, all the subroutines return a list, the first three
  987. elements of which are always:
  988. =over 4
  989. =item [0]
  990. The extracted string, including the specified delimiters.
  991. If the extraction fails C<undef> is returned.
  992. =item [1]
  993. The remainder of the input string (i.e. the characters after the
  994. extracted string). On failure, the entire string is returned.
  995. =item [2]
  996. The skipped prefix (i.e. the characters before the extracted string).
  997. On failure, C<undef> is returned.
  998. =back 
  999. Note that in a list context, the contents of the original input text (the first
  1000. argument) are not modified in any way. 
  1001. However, if the input text was passed in a variable, that variable's
  1002. C<pos> value is updated to point at the first character after the
  1003. extracted text. That means that in a list context the various
  1004. subroutines can be used much like regular expressions. For example:
  1005. while ( $next = (extract_quotelike($text))[0] )
  1006. {
  1007. # process next quote-like (in $next)
  1008. }
  1009. =head2 General behaviour in scalar and void contexts
  1010. In a scalar context, the extracted string is returned, having first been
  1011. removed from the input text. Thus, the following code also processes
  1012. each quote-like operation, but actually removes them from $text:
  1013. while ( $next = extract_quotelike($text) )
  1014. {
  1015. # process next quote-like (in $next)
  1016. }
  1017. Note that if the input text is a read-only string (i.e. a literal),
  1018. no attempt is made to remove the extracted text.
  1019. In a void context the behaviour of the extraction subroutines is
  1020. exactly the same as in a scalar context, except (of course) that the
  1021. extracted substring is not returned.
  1022. =head2 A note about prefixes
  1023. Prefix patterns are matched without any trailing modifiers (C</gimsox> etc.)
  1024. This can bite you if you're expecting a prefix specification like
  1025. '.*?(?=<H1>)' to skip everything up to the first <H1> tag. Such a prefix
  1026. pattern will only succeed if the <H1> tag is on the current line, since
  1027. . normally doesn't match newlines.
  1028. To overcome this limitation, you need to turn on /s matching within
  1029. the prefix pattern, using the C<(?s)> directive: '(?s).*?(?=<H1>)'
  1030. =head2 C<extract_delimited>
  1031. The C<extract_delimited> function formalizes the common idiom
  1032. of extracting a single-character-delimited substring from the start of
  1033. a string. For example, to extract a single-quote delimited string, the
  1034. following code is typically used:
  1035. ($remainder = $text) =~ s/A('(\.|[^'])*')//s;
  1036. $extracted = $1;
  1037. but with C<extract_delimited> it can be simplified to:
  1038. ($extracted,$remainder) = extract_delimited($text, "'");
  1039. C<extract_delimited> takes up to four scalars (the input text, the
  1040. delimiters, a prefix pattern to be skipped, and any escape characters)
  1041. and extracts the initial substring of the text that
  1042. is appropriately delimited. If the delimiter string has multiple
  1043. characters, the first one encountered in the text is taken to delimit
  1044. the substring.
  1045. The third argument specifies a prefix pattern that is to be skipped
  1046. (but must be present!) before the substring is extracted.
  1047. The final argument specifies the escape character to be used for each
  1048. delimiter.
  1049. All arguments are optional. If the escape characters are not specified,
  1050. every delimiter is escaped with a backslash (C<>).
  1051. If the prefix is not specified, the
  1052. pattern C<'s*'> - optional whitespace - is used. If the delimiter set
  1053. is also not specified, the set C</["'`]/> is used. If the text to be processed
  1054. is not specified either, C<$_> is used.
  1055. In list context, C<extract_delimited> returns a array of three
  1056. elements, the extracted substring (I<including the surrounding
  1057. delimiters>), the remainder of the text, and the skipped prefix (if
  1058. any). If a suitable delimited substring is not found, the first
  1059. element of the array is the empty string, the second is the complete
  1060. original text, and the prefix returned in the third element is an
  1061. empty string.
  1062. In a scalar context, just the extracted substring is returned. In
  1063. a void context, the extracted substring (and any prefix) are simply
  1064. removed from the beginning of the first argument.
  1065. Examples:
  1066. # Remove a single-quoted substring from the very beginning of $text:
  1067. $substring = extract_delimited($text, "'", '');
  1068. # Remove a single-quoted Pascalish substring (i.e. one in which
  1069. # doubling the quote character escapes it) from the very
  1070. # beginning of $text:
  1071. $substring = extract_delimited($text, "'", '', "'");
  1072. # Extract a single- or double- quoted substring from the
  1073. # beginning of $text, optionally after some whitespace
  1074. # (note the list context to protect $text from modification):
  1075. ($substring) = extract_delimited $text, q{"'};
  1076. # Delete the substring delimited by the first '/' in $text:
  1077. $text = join '', (extract_delimited($text,'/','[^/]*')[2,1];
  1078. Note that this last example is I<not> the same as deleting the first
  1079. quote-like pattern. For instance, if C<$text> contained the string:
  1080. "if ('./cmd' =~ m/$UNIXCMD/s) { $cmd = $1; }"
  1081. then after the deletion it would contain:
  1082. "if ('.$UNIXCMD/s) { $cmd = $1; }"
  1083. not:
  1084. "if ('./cmd' =~ ms) { $cmd = $1; }"
  1085. See L<"extract_quotelike"> for a (partial) solution to this problem.
  1086. =head2 C<extract_bracketed>
  1087. Like C<"extract_delimited">, the C<extract_bracketed> function takes
  1088. up to three optional scalar arguments: a string to extract from, a delimiter
  1089. specifier, and a prefix pattern. As before, a missing prefix defaults to
  1090. optional whitespace and a missing text defaults to C<$_>. However, a missing
  1091. delimiter specifier defaults to C<'{}()[]E<lt>E<gt>'> (see below).
  1092. C<extract_bracketed> extracts a balanced-bracket-delimited
  1093. substring (using any one (or more) of the user-specified delimiter
  1094. brackets: '(..)', '{..}', '[..]', or '<..>'). Optionally it will also
  1095. respect quoted unbalanced brackets (see below).
  1096. A "delimiter bracket" is a bracket in list of delimiters passed as
  1097. C<extract_bracketed>'s second argument. Delimiter brackets are
  1098. specified by giving either the left or right (or both!) versions
  1099. of the required bracket(s). Note that the order in which
  1100. two or more delimiter brackets are specified is not significant.
  1101. A "balanced-bracket-delimited substring" is a substring bounded by
  1102. matched brackets, such that any other (left or right) delimiter
  1103. bracket I<within> the substring is also matched by an opposite
  1104. (right or left) delimiter bracket I<at the same level of nesting>. Any
  1105. type of bracket not in the delimiter list is treated as an ordinary
  1106. character.
  1107. In other words, each type of bracket specified as a delimiter must be
  1108. balanced and correctly nested within the substring, and any other kind of
  1109. ("non-delimiter") bracket in the substring is ignored.
  1110. For example, given the string:
  1111. $text = "{ an '[irregularly :-(] {} parenthesized >:-)' string }";
  1112. then a call to C<extract_bracketed> in a list context:
  1113. @result = extract_bracketed( $text, '{}' );
  1114. would return:
  1115. ( "{ an '[irregularly :-(] {} parenthesized >:-)' string }" , "" , "" )
  1116. since both sets of C<'{..}'> brackets are properly nested and evenly balanced.
  1117. (In a scalar context just the first element of the array would be returned. In
  1118. a void context, C<$text> would be replaced by an empty string.)
  1119. Likewise the call in:
  1120. @result = extract_bracketed( $text, '{[' );
  1121. would return the same result, since all sets of both types of specified
  1122. delimiter brackets are correctly nested and balanced.
  1123. However, the call in:
  1124. @result = extract_bracketed( $text, '{([<' );
  1125. would fail, returning:
  1126. ( undef , "{ an '[irregularly :-(] {} parenthesized >:-)' string }"  );
  1127. because the embedded pairs of C<'(..)'>s and C<'[..]'>s are "cross-nested" and
  1128. the embedded C<'E<gt>'> is unbalanced. (In a scalar context, this call would
  1129. return an empty string. In a void context, C<$text> would be unchanged.)
  1130. Note that the embedded single-quotes in the string don't help in this
  1131. case, since they have not been specified as acceptable delimiters and are
  1132. therefore treated as non-delimiter characters (and ignored).
  1133. However, if a particular species of quote character is included in the
  1134. delimiter specification, then that type of quote will be correctly handled.
  1135. for example, if C<$text> is:
  1136. $text = '<A HREF=">>>>">link</A>';
  1137. then
  1138. @result = extract_bracketed( $text, '<">' );
  1139. returns:
  1140. ( '<A HREF=">>>>">', 'link</A>', "" )
  1141. as expected. Without the specification of C<"> as an embedded quoter:
  1142. @result = extract_bracketed( $text, '<>' );
  1143. the result would be:
  1144. ( '<A HREF=">', '>>>">link</A>', "" )
  1145. In addition to the quote delimiters C<'>, C<">, and C<`>, full Perl quote-like
  1146. quoting (i.e. q{string}, qq{string}, etc) can be specified by including the
  1147. letter 'q' as a delimiter. Hence:
  1148. @result = extract_bracketed( $text, '<q>' );
  1149. would correctly match something like this:
  1150. $text = '<leftop: conj /and/ conj>';
  1151. See also: C<"extract_quotelike"> and C<"extract_codeblock">.
  1152. =head2 C<extract_variable>
  1153. C<extract_variable> extracts any valid Perl variable or
  1154. variable-involved expression, including scalars, arrays, hashes, array
  1155. accesses, hash look-ups, method calls through objects, subroutine calls
  1156. through subroutine references, etc.
  1157. The subroutine takes up to two optional arguments:
  1158. =over 4
  1159. =item 1.
  1160. A string to be processed (C<$_> if the string is omitted or C<undef>)
  1161. =item 2.
  1162. A string specifying a pattern to be matched as a prefix (which is to be
  1163. skipped). If omitted, optional whitespace is skipped.
  1164. =back
  1165. On success in a list context, an array of 3 elements is returned. The
  1166. elements are:
  1167. =over 4
  1168. =item [0]
  1169. the extracted variable, or variablish expression
  1170. =item [1]
  1171. the remainder of the input text,
  1172. =item [2]
  1173. the prefix substring (if any),
  1174. =back
  1175. On failure, all of these values (except the remaining text) are C<undef>.
  1176. In a scalar context, C<extract_variable> returns just the complete
  1177. substring that matched a variablish expression. C<undef> is returned on
  1178. failure. In addition, the original input text has the returned substring
  1179. (and any prefix) removed from it.
  1180. In a void context, the input text just has the matched substring (and
  1181. any specified prefix) removed.
  1182. =head2 C<extract_tagged>
  1183. C<extract_tagged> extracts and segments text between (balanced)
  1184. specified tags. 
  1185. The subroutine takes up to five optional arguments:
  1186. =over 4
  1187. =item 1.
  1188. A string to be processed (C<$_> if the string is omitted or C<undef>)
  1189. =item 2.
  1190. A string specifying a pattern to be matched as the opening tag.
  1191. If the pattern string is omitted (or C<undef>) then a pattern
  1192. that matches any standard XML tag is used.
  1193. =item 3.
  1194. A string specifying a pattern to be matched at the closing tag. 
  1195. If the pattern string is omitted (or C<undef>) then the closing
  1196. tag is constructed by inserting a C</> after any leading bracket
  1197. characters in the actual opening tag that was matched (I<not> the pattern
  1198. that matched the tag). For example, if the opening tag pattern
  1199. is specified as C<'{{w+}}'> and actually matched the opening tag 
  1200. C<"{{DATA}}">, then the constructed closing tag would be C<"{{/DATA}}">.
  1201. =item 4.
  1202. A string specifying a pattern to be matched as a prefix (which is to be
  1203. skipped). If omitted, optional whitespace is skipped.
  1204. =item 5.
  1205. A hash reference containing various parsing options (see below)
  1206. =back
  1207. The various options that can be specified are:
  1208. =over 4
  1209. =item C<reject =E<gt> $listref>
  1210. The list reference contains one or more strings specifying patterns
  1211. that must I<not> appear within the tagged text.
  1212. For example, to extract
  1213. an HTML link (which should not contain nested links) use:
  1214.         extract_tagged($text, '<A>', '</A>', undef, {reject => ['<A>']} );
  1215. =item C<ignore =E<gt> $listref>
  1216. The list reference contains one or more strings specifying patterns
  1217. that are I<not> be be treated as nested tags within the tagged text
  1218. (even if they would match the start tag pattern).
  1219. For example, to extract an arbitrary XML tag, but ignore "empty" elements:
  1220.         extract_tagged($text, undef, undef, undef, {ignore => ['<[^>]*/>']} );
  1221. (also see L<"gen_delimited_pat"> below).
  1222. =item C<fail =E<gt> $str>
  1223. The C<fail> option indicates the action to be taken if a matching end
  1224. tag is not encountered (i.e. before the end of the string or some
  1225. C<reject> pattern matches). By default, a failure to match a closing
  1226. tag causes C<extract_tagged> to immediately fail.
  1227. However, if the string value associated with <reject> is "MAX", then
  1228. C<extract_tagged> returns the complete text up to the point of failure.
  1229. If the string is "PARA", C<extract_tagged> returns only the first paragraph
  1230. after the tag (up to the first line that is either empty or contains
  1231. only whitespace characters).
  1232. If the string is "", the the default behaviour (i.e. failure) is reinstated.
  1233. For example, suppose the start tag "/para" introduces a paragraph, which then
  1234. continues until the next "/endpara" tag or until another "/para" tag is
  1235. encountered:
  1236.         $text = "/para line 1nnline 3n/para line 4";
  1237.         extract_tagged($text, '/para', '/endpara', undef,
  1238.                                 {reject => '/para', fail => MAX );
  1239.         # EXTRACTED: "/para line 1nnline 3n"
  1240. Suppose instead, that if no matching "/endpara" tag is found, the "/para"
  1241. tag refers only to the immediately following paragraph:
  1242.         $text = "/para line 1nnline 3n/para line 4";
  1243.         extract_tagged($text, '/para', '/endpara', undef,
  1244.                         {reject => '/para', fail => MAX );
  1245.         # EXTRACTED: "/para line 1n"
  1246. Note that the specified C<fail> behaviour applies to nested tags as well.
  1247. =back
  1248. On success in a list context, an array of 6 elements is returned. The elements are:
  1249. =over 4
  1250. =item [0]
  1251. the extracted tagged substring (including the outermost tags),
  1252. =item [1]
  1253. the remainder of the input text,
  1254. =item [2]
  1255. the prefix substring (if any),
  1256. =item [3]
  1257. the opening tag
  1258. =item [4]
  1259. the text between the opening and closing tags
  1260. =item [5]
  1261. the closing tag (or "" if no closing tag was found)
  1262. =back
  1263. On failure, all of these values (except the remaining text) are C<undef>.
  1264. In a scalar context, C<extract_tagged> returns just the complete
  1265. substring that matched a tagged text (including the start and end
  1266. tags). C<undef> is returned on failure. In addition, the original input
  1267. text has the returned substring (and any prefix) removed from it.
  1268. In a void context, the input text just has the matched substring (and
  1269. any specified prefix) removed.
  1270. =head2 C<gen_extract_tagged>
  1271. (Note: This subroutine is only available under Perl5.005)
  1272. C<gen_extract_tagged> generates a new anonymous subroutine which
  1273. extracts text between (balanced) specified tags. In other words,
  1274. it generates a function identical in function to C<extract_tagged>.
  1275. The difference between C<extract_tagged> and the anonymous
  1276. subroutines generated by
  1277. C<gen_extract_tagged>, is that those generated subroutines:
  1278. =over 4
  1279. =item * 
  1280. do not have to reparse tag specification or parsing options every time
  1281. they are called (whereas C<extract_tagged> has to effectively rebuild
  1282. its tag parser on every call);
  1283. =item *
  1284. make use of the new qr// construct to pre-compile the regexes they use
  1285. (whereas C<extract_tagged> uses standard string variable interpolation 
  1286. to create tag-matching patterns).
  1287. =back
  1288. The subroutine takes up to four optional arguments (the same set as
  1289. C<extract_tagged> except for the string to be processed). It returns
  1290. a reference to a subroutine which in turn takes a single argument (the text to
  1291. be extracted from).
  1292. In other words, the implementation of C<extract_tagged> is exactly
  1293. equivalent to:
  1294.         sub extract_tagged
  1295.         {
  1296.                 my $text = shift;
  1297.                 $extractor = gen_extract_tagged(@_);
  1298.                 return $extractor->($text);
  1299.         }
  1300. (although C<extract_tagged> is not currently implemented that way, in order
  1301. to preserve pre-5.005 compatibility).
  1302. Using C<gen_extract_tagged> to create extraction functions for specific tags 
  1303. is a good idea if those functions are going to be called more than once, since
  1304. their performance is typically twice as good as the more general-purpose
  1305. C<extract_tagged>.
  1306. =head2 C<extract_quotelike>
  1307. C<extract_quotelike> attempts to recognize, extract, and segment any
  1308. one of the various Perl quotes and quotelike operators (see
  1309. L<perlop(3)>) Nested backslashed delimiters, embedded balanced bracket
  1310. delimiters (for the quotelike operators), and trailing modifiers are
  1311. all caught. For example, in:
  1312.         extract_quotelike 'q # an octothorpe: # (not the end of the q!) #'
  1313.         
  1314.         extract_quotelike '  "You said, "Use sed"."  '
  1315.         extract_quotelike ' s{([A-Z]{1,8}.[A-Z]{3})} /L$1E/; '
  1316.         extract_quotelike ' tr/\/\\/\//ds; '
  1317. the full Perl quotelike operations are all extracted correctly.
  1318. Note too that, when using the /x modifier on a regex, any comment
  1319. containing the current pattern delimiter will cause the regex to be
  1320. immediately terminated. In other words:
  1321.         'm /
  1322.                 (?i)            # CASE INSENSITIVE
  1323.                 [a-z_]          # LEADING ALPHABETIC/UNDERSCORE
  1324.                 [a-z0-9]*       # FOLLOWED BY ANY NUMBER OF ALPHANUMERICS
  1325.            /x'
  1326. will be extracted as if it were:
  1327.         'm /
  1328.                 (?i)            # CASE INSENSITIVE
  1329.                 [a-z_]          # LEADING ALPHABETIC/'
  1330. This behaviour is identical to that of the actual compiler.
  1331. C<extract_quotelike> takes two arguments: the text to be processed and
  1332. a prefix to be matched at the very beginning of the text. If no prefix 
  1333. is specified, optional whitespace is the default. If no text is given,
  1334. C<$_> is used.
  1335. In a list context, an array of 11 elements is returned. The elements are:
  1336. =over 4
  1337. =item [0]
  1338. the extracted quotelike substring (including trailing modifiers),
  1339. =item [1]
  1340. the remainder of the input text,
  1341. =item [2]
  1342. the prefix substring (if any),
  1343. =item [3]
  1344. the name of the quotelike operator (if any),
  1345. =item [4]
  1346. the left delimiter of the first block of the operation,
  1347. =item [5]
  1348. the text of the first block of the operation
  1349. (that is, the contents of
  1350. a quote, the regex of a match or substitution or the target list of a
  1351. translation),
  1352. =item [6]
  1353. the right delimiter of the first block of the operation,
  1354. =item [7]
  1355. the left delimiter of the second block of the operation
  1356. (that is, if it is a C<s>, C<tr>, or C<y>),
  1357. =item [8]
  1358. the text of the second block of the operation 
  1359. (that is, the replacement of a substitution or the translation list
  1360. of a translation),
  1361. =item [9]
  1362. the right delimiter of the second block of the operation (if any),
  1363. =item [10]
  1364. the trailing modifiers on the operation (if any).
  1365. =back
  1366. For each of the fields marked "(if any)" the default value on success is
  1367. an empty string.
  1368. On failure, all of these values (except the remaining text) are C<undef>.
  1369. In a scalar context, C<extract_quotelike> returns just the complete substring
  1370. that matched a quotelike operation (or C<undef> on failure). In a scalar or
  1371. void context, the input text has the same substring (and any specified
  1372. prefix) removed.
  1373. Examples:
  1374.         # Remove the first quotelike literal that appears in text
  1375.                 $quotelike = extract_quotelike($text,'.*?');
  1376.         # Replace one or more leading whitespace-separated quotelike
  1377.         # literals in $_ with "<QLL>"
  1378.                 do { $_ = join '<QLL>', (extract_quotelike)[2,1] } until $@;
  1379.         # Isolate the search pattern in a quotelike operation from $text
  1380.                 ($op,$pat) = (extract_quotelike $text)[3,5];
  1381.                 if ($op =~ /[ms]/)
  1382.                 {
  1383.                         print "search pattern: $patn";
  1384.                 }
  1385.                 else
  1386.                 {
  1387.                         print "$op is not a pattern matching operationn";
  1388.                 }
  1389. =head2 C<extract_quotelike> and "here documents"
  1390. C<extract_quotelike> can successfully extract "here documents" from an input
  1391. string, but with an important caveat in list contexts.
  1392. Unlike other types of quote-like literals, a here document is rarely
  1393. a contiguous substring. For example, a typical piece of code using
  1394. here document might look like this:
  1395.         <<'EOMSG' || die;
  1396.         This is the message.
  1397.         EOMSG
  1398.         exit;
  1399. Given this as an input string in a scalar context, C<extract_quotelike>
  1400. would correctly return the string "<<'EOMSG'nThis is the message.nEOMSG",
  1401. leaving the string " || die;nexit;" in the original variable. In other words,
  1402. the two separate pieces of the here document are successfully extracted and
  1403. concatenated.
  1404. In a list context, C<extract_quotelike> would return the list
  1405. =over 4
  1406. =item [0]
  1407. "<<'EOMSG'nThis is the message.nEOMSGn" (i.e. the full extracted here document,
  1408. including fore and aft delimiters),
  1409. =item [1]
  1410. " || die;nexit;" (i.e. the remainder of the input text, concatenated),
  1411. =item [2]
  1412. "" (i.e. the prefix substring -- trivial in this case),
  1413. =item [3]
  1414. "<<" (i.e. the "name" of the quotelike operator)
  1415. =item [4]
  1416. "'EOMSG'" (i.e. the left delimiter of the here document, including any quotes),
  1417. =item [5]
  1418. "This is the message.n" (i.e. the text of the here document),
  1419. =item [6]
  1420. "EOMSG" (i.e. the right delimiter of the here document),
  1421. =item [7..10]
  1422. "" (a here document has no second left delimiter, second text, second right
  1423. delimiter, or trailing modifiers).
  1424. =back
  1425. However, the matching position of the input variable would be set to
  1426. "exit;" (i.e. I<after> the closing delimiter of the here document),
  1427. which would cause the earlier " || die;nexit;" to be skipped in any
  1428. sequence of code fragment extractions.
  1429. To avoid this problem, when it encounters a here document whilst
  1430. extracting from a modifiable string, C<extract_quotelike> silently
  1431. rearranges the string to an equivalent piece of Perl:
  1432.         <<'EOMSG'
  1433.         This is the message.
  1434.         EOMSG
  1435.         || die;
  1436.         exit;
  1437. in which the here document I<is> contiguous. It still leaves the
  1438. matching position after the here document, but now the rest of the line
  1439. on which the here document starts is not skipped.
  1440. To prevent <extract_quotelike> from mucking about with the input in this way
  1441. (this is the only case where a list-context C<extract_quotelike> does so),
  1442. you can pass the input variable as an interpolated literal:
  1443.         $quotelike = extract_quotelike("$var");
  1444. =head2 C<extract_codeblock>
  1445. C<extract_codeblock> attempts to recognize and extract a balanced
  1446. bracket delimited substring that may contain unbalanced brackets
  1447. inside Perl quotes or quotelike operations. That is, C<extract_codeblock>
  1448. is like a combination of C<"extract_bracketed"> and
  1449. C<"extract_quotelike">.
  1450. C<extract_codeblock> takes the same initial three parameters as C<extract_bracketed>:
  1451. a text to process, a set of delimiter brackets to look for, and a prefix to
  1452. match first. It also takes an optional fourth parameter, which allows the
  1453. outermost delimiter brackets to be specified separately (see below).
  1454. Omitting the first argument (input text) means process C<$_> instead.
  1455. Omitting the second argument (delimiter brackets) indicates that only C<'{'> is to be used.
  1456. Omitting the third argument (prefix argument) implies optional whitespace at the start.
  1457. Omitting the fourth argument (outermost delimiter brackets) indicates that the
  1458. value of the second argument is to be used for the outermost delimiters.
  1459. Once the prefix an dthe outermost opening delimiter bracket have been
  1460. recognized, code blocks are extracted by stepping through the input text and
  1461. trying the following alternatives in sequence:
  1462. =over 4
  1463. =item 1.
  1464. Try and match a closing delimiter bracket. If the bracket was the same
  1465. species as the last opening bracket, return the substring to that
  1466. point. If the bracket was mismatched, return an error.
  1467. =item 2.
  1468. Try to match a quote or quotelike operator. If found, call
  1469. C<extract_quotelike> to eat it. If C<extract_quotelike> fails, return
  1470. the error it returned. Otherwise go back to step 1.
  1471. =item 3.
  1472. Try to match an opening delimiter bracket. If found, call
  1473. C<extract_codeblock> recursively to eat the embedded block. If the
  1474. recursive call fails, return an error. Otherwise, go back to step 1.
  1475. =item 4.
  1476. Unconditionally match a bareword or any other single character, and
  1477. then go back to step 1.
  1478. =back
  1479. Examples:
  1480.         # Find a while loop in the text
  1481.                 if ($text =~ s/.*?whiles*{/{/)
  1482.                 {
  1483.                         $loop = "while " . extract_codeblock($text);
  1484.                 }
  1485.         # Remove the first round-bracketed list (which may include
  1486.         # round- or curly-bracketed code blocks or quotelike operators)
  1487.                 extract_codeblock $text, "(){}", '[^(]*';
  1488. The ability to specify a different outermost delimiter bracket is useful
  1489. in some circumstances. For example, in the Parse::RecDescent module,
  1490. parser actions which are to be performed only on a successful parse
  1491. are specified using a C<E<lt>defer:...E<gt>> directive. For example:
  1492.         sentence: subject verb object
  1493.                         <defer: {$::theVerb = $item{verb}} >
  1494. Parse::RecDescent uses C<extract_codeblock($text, '{}E<lt>E<gt>')> to extract the code
  1495. within the C<E<lt>defer:...E<gt>> directive, but there's a problem.
  1496. A deferred action like this:
  1497.                         <defer: {if ($count>10) {$count--}} >
  1498. will be incorrectly parsed as:
  1499.                         <defer: {if ($count>
  1500. because the "less than" operator is interpreted as a closing delimiter.
  1501. But, by extracting the directive using
  1502. S<C<extract_codeblock($text, '{}', undef, 'E<lt>E<gt>')>>
  1503. the '>' character is only treated as a delimited at the outermost
  1504. level of the code block, so the directive is parsed correctly.
  1505. =head2 C<extract_multiple>
  1506. The C<extract_multiple> subroutine takes a string to be processed and a 
  1507. list of extractors (subroutines or regular expressions) to apply to that string.
  1508. In an array context C<extract_multiple> returns an array of substrings
  1509. of the original string, as extracted by the specified extractors.
  1510. In a scalar context, C<extract_multiple> returns the first
  1511. substring successfully extracted from the original string. In both
  1512. scalar and void contexts the original string has the first successfully
  1513. extracted substring removed from it. In all contexts
  1514. C<extract_multiple> starts at the current C<pos> of the string, and
  1515. sets that C<pos> appropriately after it matches.
  1516. Hence, the aim of of a call to C<extract_multiple> in a list context
  1517. is to split the processed string into as many non-overlapping fields as
  1518. possible, by repeatedly applying each of the specified extractors
  1519. to the remainder of the string. Thus C<extract_multiple> is
  1520. a generalized form of Perl's C<split> subroutine.
  1521. The subroutine takes up to four optional arguments:
  1522. =over 4
  1523. =item 1.
  1524. A string to be processed (C<$_> if the string is omitted or C<undef>)
  1525. =item 2.
  1526. A reference to a list of subroutine references and/or qr// objects and/or
  1527. literal strings and/or hash references, specifying the extractors
  1528. to be used to split the string. If this argument is omitted (or
  1529. C<undef>) the list:
  1530.         [
  1531.                 sub { extract_variable($_[0], '') },
  1532.                 sub { extract_quotelike($_[0],'') },
  1533.                 sub { extract_codeblock($_[0],'{}','') },
  1534.         ]
  1535. is used.
  1536. =item 3.
  1537. An number specifying the maximum number of fields to return. If this
  1538. argument is omitted (or C<undef>), split continues as long as possible.
  1539. If the third argument is I<N>, then extraction continues until I<N> fields
  1540. have been successfully extracted, or until the string has been completely 
  1541. processed.
  1542. Note that in scalar and void contexts the value of this argument is 
  1543. automatically reset to 1 (under C<-w>, a warning is issued if the argument 
  1544. has to be reset).
  1545. =item 4.
  1546. A value indicating whether unmatched substrings (see below) within the
  1547. text should be skipped or returned as fields. If the value is true,
  1548. such substrings are skipped. Otherwise, they are returned.
  1549. =back
  1550. The extraction process works by applying each extractor in
  1551. sequence to the text string.
  1552. If the extractor is a subroutine it is called in a list context and is
  1553. expected to return a list of a single element, namely the extracted
  1554. text. It may optionally also return two further arguments: a string
  1555. representing the text left after extraction (like $' for a pattern
  1556. match), and a string representing any prefix skipped before the
  1557. extraction (like $` in a pattern match). Note that this is designed
  1558. to facilitate the use of other Text::Balanced subroutines with
  1559. C<extract_multiple>. Note too that the value returned by an extractor
  1560. subroutine need not bear any relationship to the corresponding substring
  1561. of the original text (see examples below).
  1562. If the extractor is a precompiled regular expression or a string,
  1563. it is matched against the text in a scalar context with a leading
  1564. 'G' and the gc modifiers enabled. The extracted value is either
  1565. $1 if that variable is defined after the match, or else the
  1566. complete match (i.e. $&).
  1567. If the extractor is a hash reference, it must contain exactly one element.
  1568. The value of that element is one of the
  1569. above extractor types (subroutine reference, regular expression, or string).
  1570. The key of that element is the name of a class into which the successful
  1571. return value of the extractor will be blessed.
  1572. If an extractor returns a defined value, that value is immediately
  1573. treated as the next extracted field and pushed onto the list of fields.
  1574. If the extractor was specified in a hash reference, the field is also
  1575. blessed into the appropriate class, 
  1576. If the extractor fails to match (in the case of a regex extractor), or returns an empty list or an undefined value (in the case of a subroutine extractor), it is
  1577. assumed to have failed to extract.
  1578. If none of the extractor subroutines succeeds, then one
  1579. character is extracted from the start of the text and the extraction
  1580. subroutines reapplied. Characters which are thus removed are accumulated and
  1581. eventually become the next field (unless the fourth argument is true, in which
  1582. case they are discarded).
  1583. For example, the following extracts substrings that are valid Perl variables:
  1584.         @fields = extract_multiple($text,
  1585.                                    [ sub { extract_variable($_[0]) } ],
  1586.                                    undef, 1);
  1587. This example separates a text into fields which are quote delimited,
  1588. curly bracketed, and anything else. The delimited and bracketed
  1589. parts are also blessed to identify them (the "anything else" is unblessed):
  1590.         @fields = extract_multiple($text,
  1591.                    [
  1592.                         { Delim => sub { extract_delimited($_[0],q{'"}) } },
  1593.                         { Brack => sub { extract_bracketed($_[0],'{}') } },
  1594.                    ]);
  1595. This call extracts the next single substring that is a valid Perl quotelike
  1596. operator (and removes it from $text):
  1597.         $quotelike = extract_multiple($text,
  1598.                                       [
  1599.                                         sub { extract_quotelike($_[0]) },
  1600.                                       ], undef, 1);
  1601. Finally, here is yet another way to do comma-separated value parsing:
  1602.         @fields = extract_multiple($csv_text,
  1603.                                   [
  1604.                                         sub { extract_delimited($_[0],q{'"}) },
  1605.                                         qr/([^,]+)(.*)/,
  1606.                                   ],
  1607.                                   undef,1);
  1608. The list in the second argument means:
  1609. I<"Try and extract a ' or " delimited string, otherwise extract anything up to a comma...">.
  1610. The undef third argument means:
  1611. I<"...as many times as possible...">,
  1612. and the true value in the fourth argument means
  1613. I<"...discarding anything else that appears (i.e. the commas)">.
  1614. If you wanted the commas preserved as separate fields (i.e. like split
  1615. does if your split pattern has capturing parentheses), you would
  1616. just make the last parameter undefined (or remove it).
  1617. =head2 C<gen_delimited_pat>
  1618. The C<gen_delimited_pat> subroutine takes a single (string) argument and
  1619.    > builds a Friedl-style optimized regex that matches a string delimited
  1620. by any one of the characters in the single argument. For example:
  1621.         gen_delimited_pat(q{'"})
  1622. returns the regex:
  1623.         (?:"(?:\"|(?!").)*"|'(?:\'|(?!').)*')
  1624. Note that the specified delimiters are automatically quotemeta'd.
  1625. A typical use of C<gen_delimited_pat> would be to build special purpose tags
  1626. for C<extract_tagged>. For example, to properly ignore "empty" XML elements
  1627. (which might contain quoted strings):
  1628.         my $empty_tag = '<(' . gen_delimited_pat(q{'"}) . '|.)+/>';
  1629.         extract_tagged($text, undef, undef, undef, {ignore => [$empty_tag]} );
  1630. C<gen_delimited_pat> may also be called with an optional second argument,
  1631. which specifies the "escape" character(s) to be used for each delimiter.
  1632. For example to match a Pascal-style string (where ' is the delimiter
  1633. and '' is a literal ' within the string):
  1634.         gen_delimited_pat(q{'},q{'});
  1635. Different escape characters can be specified for different delimiters.
  1636. For example, to specify that '/' is the escape for single quotes
  1637. and '%' is the escape for double quotes:
  1638.         gen_delimited_pat(q{'"},q{/%});
  1639. If more delimiters than escape chars are specified, the last escape char
  1640. is used for the remaining delimiters.
  1641. If no escape char is specified for a given specified delimiter, '' is used.
  1642. =head2 C<delimited_pat>
  1643. Note that C<gen_delimited_pat> was previously called C<delimited_pat>.
  1644. That name may still be used, but is now deprecated.
  1645.         
  1646. =head1 DIAGNOSTICS
  1647. In a list context, all the functions return C<(undef,$original_text)>
  1648. on failure. In a scalar context, failure is indicated by returning C<undef>
  1649. (in this case the input text is not modified in any way).
  1650. In addition, on failure in I<any> context, the C<$@> variable is set.
  1651. Accessing C<$@-E<gt>{error}> returns one of the error diagnostics listed
  1652. below.
  1653. Accessing C<$@-E<gt>{pos}> returns the offset into the original string at
  1654. which the error was detected (although not necessarily where it occurred!)
  1655. Printing C<$@> directly produces the error message, with the offset appended.
  1656. On success, the C<$@> variable is guaranteed to be C<undef>.
  1657. The available diagnostics are:
  1658. =over 4
  1659. =item  C<Did not find a suitable bracket: "%s">
  1660. The delimiter provided to C<extract_bracketed> was not one of
  1661. C<'()[]E<lt>E<gt>{}'>.
  1662. =item  C<Did not find prefix: /%s/>
  1663. A non-optional prefix was specified but wasn't found at the start of the text.
  1664. =item  C<Did not find opening bracket after prefix: "%s">
  1665. C<extract_bracketed> or C<extract_codeblock> was expecting a
  1666. particular kind of bracket at the start of the text, and didn't find it.
  1667. =item  C<No quotelike operator found after prefix: "%s">
  1668. C<extract_quotelike> didn't find one of the quotelike operators C<q>,
  1669. C<qq>, C<qw>, C<qx>, C<s>, C<tr> or C<y> at the start of the substring
  1670. it was extracting.
  1671. =item  C<Unmatched closing bracket: "%c">
  1672. C<extract_bracketed>, C<extract_quotelike> or C<extract_codeblock> encountered
  1673. a closing bracket where none was expected.
  1674. =item  C<Unmatched opening bracket(s): "%s">
  1675. C<extract_bracketed>, C<extract_quotelike> or C<extract_codeblock> ran 
  1676. out of characters in the text before closing one or more levels of nested
  1677. brackets.
  1678. =item C<Unmatched embedded quote (%s)>
  1679. C<extract_bracketed> attempted to match an embedded quoted substring, but
  1680. failed to find a closing quote to match it.
  1681. =item C<Did not find closing delimiter to match '%s'>
  1682. C<extract_quotelike> was unable to find a closing delimiter to match the
  1683. one that opened the quote-like operation.
  1684. =item  C<Mismatched closing bracket: expected "%c" but found "%s">
  1685. C<extract_bracketed>, C<extract_quotelike> or C<extract_codeblock> found
  1686. a valid bracket delimiter, but it was the wrong species. This usually
  1687. indicates a nesting error, but may indicate incorrect quoting or escaping.
  1688. =item  C<No block delimiter found after quotelike "%s">
  1689. C<extract_quotelike> or C<extract_codeblock> found one of the
  1690. quotelike operators C<q>, C<qq>, C<qw>, C<qx>, C<s>, C<tr> or C<y>
  1691. without a suitable block after it.
  1692. =item C<Did not find leading dereferencer>
  1693. C<extract_variable> was expecting one of '$', '@', or '%' at the start of
  1694. a variable, but didn't find any of them.
  1695. =item C<Bad identifier after dereferencer>
  1696. C<extract_variable> found a '$', '@', or '%' indicating a variable, but that
  1697. character was not followed by a legal Perl identifier.
  1698. =item C<Did not find expected opening bracket at %s>
  1699. C<extract_codeblock> failed to find any of the outermost opening brackets
  1700. that were specified.
  1701. =item C<Improperly nested codeblock at %s>
  1702. A nested code block was found that started with a delimiter that was specified
  1703. as being only to be used as an outermost bracket.
  1704. =item  C<Missing second block for quotelike "%s">
  1705. C<extract_codeblock> or C<extract_quotelike> found one of the
  1706. quotelike operators C<s>, C<tr> or C<y> followed by only one block.
  1707. =item C<No match found for opening bracket>
  1708. C<extract_codeblock> failed to find a closing bracket to match the outermost
  1709. opening bracket.
  1710. =item C<Did not find opening tag: /%s/>
  1711. C<extract_tagged> did not find a suitable opening tag (after any specified
  1712. prefix was removed).
  1713. =item C<Unable to construct closing tag to match: /%s/>
  1714. C<extract_tagged> matched the specified opening tag and tried to
  1715. modify the matched text to produce a matching closing tag (because
  1716. none was specified). It failed to generate the closing tag, almost
  1717. certainly because the opening tag did not start with a
  1718. bracket of some kind.
  1719. =item C<Found invalid nested tag: %s>
  1720. C<extract_tagged> found a nested tag that appeared in the "reject" list
  1721. (and the failure mode was not "MAX" or "PARA").
  1722. =item C<Found unbalanced nested tag: %s>
  1723. C<extract_tagged> found a nested opening tag that was not matched by a
  1724. corresponding nested closing tag (and the failure mode was not "MAX" or "PARA").
  1725. =item C<Did not find closing tag>
  1726. C<extract_tagged> reached the end of the text without finding a closing tag
  1727. to match the original opening tag (and the failure mode was not
  1728. "MAX" or "PARA").
  1729. =back
  1730. =head1 AUTHOR
  1731. Damian Conway (damian@conway.org)
  1732. =head1 BUGS AND IRRITATIONS
  1733. There are undoubtedly serious bugs lurking somewhere in this code, if
  1734. only because parts of it give the impression of understanding a great deal
  1735. more about Perl than they really do. 
  1736. Bug reports and other feedback are most welcome.
  1737. =head1 COPYRIGHT
  1738.  Copyright (c) 1997-2001, Damian Conway. All Rights Reserved.
  1739.  This module is free software. It may be used, redistributed
  1740.      and/or modified under the same terms as Perl itself.