aboutsummaryrefslogtreecommitdiffstats
path: root/examples/clyx2asn1.pl
diff options
context:
space:
mode:
Diffstat (limited to 'examples/clyx2asn1.pl')
-rwxr-xr-xexamples/clyx2asn1.pl51
1 files changed, 51 insertions, 0 deletions
diff --git a/examples/clyx2asn1.pl b/examples/clyx2asn1.pl
new file mode 100755
index 00000000..e544baa5
--- /dev/null
+++ b/examples/clyx2asn1.pl
@@ -0,0 +1,51 @@
+#!/usr/bin/perl
+
+#
+# $Id$
+# $Author$
+#
+# Simple tool that fetches known ASN.1 specifications from the
+# stream of LyX data.
+#
+
+if($#ARGV == -1) {
+ print STDERR "Extract known modules from LyX data\n";
+ print STDERR "Usage: cat *.lyx | $0 <ASN-Module-Name> ...\n";
+ exit 64;
+}
+
+# Convert arguments into a hash for quicker search.
+for(my $i; $i <= $#ARGV; $i++) {
+ $modules{$ARGV[$i]} = $ARGV[$i].".asn1";
+}
+
+# Process incoming stream in search for ASN.1 modules.
+while(<STDIN>) {
+ chop;
+ if($inmodule) {
+ next if(/^$/);
+ if(/^\\layout /) {
+ print O "\n";
+ next;
+ }
+ if(/^\\begin_inset Quotes/) {
+ print O '"';
+ next;
+ }
+ next if(/^\\/);
+ print O;
+ if(/^END$/) {
+ $inmodule = 0;
+ print O "\n";
+ }
+ } else {
+ next unless $modules{$_};
+ open(O, '> '.$modules{$_});
+ print O;
+ $inmodule = 1;
+ delete $modules{$_};
+ }
+}
+
+# Make sure noone's missing.
+die "Modules not found: " . join(", ", keys %modules) . "\n" if keys %modules;