summaryrefslogtreecommitdiffstats
path: root/perl-install/share/po/b_dump_strings.pm
diff options
context:
space:
mode:
authorPascal Rigaux <pixel@mandriva.com>2001-07-02 14:01:16 +0000
committerPascal Rigaux <pixel@mandriva.com>2001-07-02 14:01:16 +0000
commit931e6730f2a74917e8120760f9fea1f9037c623a (patch)
tree66f734d54c8c7e6ce963378abf50a9fafbe4a8b1 /perl-install/share/po/b_dump_strings.pm
parentfb83ee6d05334fa2ddf01e8cae5fc9dcd8b0499a (diff)
downloaddrakx-931e6730f2a74917e8120760f9fea1f9037c623a.tar
drakx-931e6730f2a74917e8120760f9fea1f9037c623a.tar.gz
drakx-931e6730f2a74917e8120760f9fea1f9037c623a.tar.bz2
drakx-931e6730f2a74917e8120760f9fea1f9037c623a.tar.xz
drakx-931e6730f2a74917e8120760f9fea1f9037c623a.zip
high level i18n messages getting. only partial stuff. Used only for verification
Diffstat (limited to 'perl-install/share/po/b_dump_strings.pm')
-rw-r--r--perl-install/share/po/b_dump_strings.pm113
1 files changed, 113 insertions, 0 deletions
diff --git a/perl-install/share/po/b_dump_strings.pm b/perl-install/share/po/b_dump_strings.pm
new file mode 100644
index 000000000..f29275ecd
--- /dev/null
+++ b/perl-install/share/po/b_dump_strings.pm
@@ -0,0 +1,113 @@
+package b_dump_strings;
+
+use B qw(minus_c save_BEGINs peekop class walkoptree walkoptree_exec
+ main_start main_root cstring sv_undef);
+
+BEGIN { open OUT, ">$ENV{OUTFILE}" }
+
+sub B::CV::debug {
+ my ($sv) = @_;
+ B::walkoptree_exec($sv->START, "debug");
+}
+
+sub B::OP::debug {
+ my ($op) = @_;
+# print "OP ", class($op), " ", $op->name, "\n";
+ eval {
+ if ($op->name eq 'entersub') {
+ $op2 = $op->first->first or return;
+
+ if ($op2->name eq 'pushmark') {
+ my $s = $op2->sibling->sv->PV;
+ my $l;
+ for ($l = $op2->sibling; ${$l->sibling}; $l = $l->sibling) {}
+
+ $s =~ s/"/\\"/g;
+ if ($l->first->sv->NAME eq '_') {
+ print OUT qq($::pkg _("$s")\n);
+ }
+ }
+ }
+ };
+}
+sub B::RV::debug {
+ my ($op) = @_;
+ $op->RV->debug;
+}
+sub B::SVOP::debug {
+ my ($op) = @_;
+ $op->sv->debug;
+}
+sub B::PV::debug {
+ my ($sv) = @_;
+# print "STRING ", $sv->PV, "\n";
+}
+sub B::IV::debug {
+ my ($sv) = @_;
+# printf "IV\t%d\n", $sv->IV;
+}
+sub B::NV::debug {
+ my ($sv) = @_;
+# printf "NV\t%s\n", $sv->NV;
+}
+sub B::PVIV::debug {
+ my ($sv) = @_;
+# printf "IV\t%d\n", $sv->IV;
+}
+sub B::PVNV::debug {
+ my ($sv) = @_;
+# printf "NV\t%s\n", $sv->NV;
+}
+sub B::AV::debug {
+ my ($av) = @_;
+# print "ARRAY\n";
+}
+sub B::GV::debug {
+ my ($gv) = @_;
+# printf "GV %s::%s\n", $gv->STASH->NAME, $gv->SAFENAME;
+}
+sub B::NULL::debug {
+# print "NUL\n";
+}
+sub B::SPECIAL::debug {}
+
+sub B::SV::debug { die "SV"; }
+sub B::BM::debug {
+ die "BM";
+}
+sub B::PVLV::debug { die "PVLV"; }
+
+sub B::GV::pgv {
+ my ($gv) = @_;
+# print $gv->NAME, "\n";
+ $gv->SV->debug;
+ $gv->HV->debug;
+ $gv->AV->debug;
+ $gv->CV->debug;
+}
+
+
+
+
+sub search {
+
+foreach my $pkg (grep { /^[a-z]/ && !/^(diagnostics|strict|attributes|main)/ } grep { /\w+::$/ } keys %main::) {
+ $::pkg = $pkg;
+ foreach (keys %{$main::{$pkg}}) {
+ print STDERR "$pkg $_ XXXXX\n";
+ local *f = *{$main::{$pkg}{$_}};
+ B::svref_2object(\*f)->pgv;
+ }
+}
+print STDERR "DONE\n";
+}
+
+CHECK { search() }
+INIT { exit 0 }
+
+#use lib qw(. /home/pixel/gi/perl-install);
+##use commands;
+#require '/tmp/t.pl';
+#search();
+
+1;