]> jspc29.x-matter.uni-frankfurt.de Git - mvdsensorcontrol.git/commitdiff
startup.pl creates commands for ui.pl
authorJan Michel <j.michel@gsi.de>
Tue, 9 Jul 2013 12:41:27 +0000 (14:41 +0200)
committerJan Michel <j.michel@gsi.de>
Tue, 9 Jul 2013 12:41:27 +0000 (14:41 +0200)
setup/testsetup.xml
tools/startup.pl

index 0121bd02fdef67a82fce2779f3bd4be140f5d183..3040bd0486717f142ae0773a105da8c25c6a9024 100644 (file)
@@ -4,9 +4,10 @@
                name="Prototype"
                >
   <description>The main MVD prototype system setup file</description>
-  <controller address="f308">
-    <chain id="0">
+  <controller address="f308" name="board01">
+    <chain id="0" name="chain0">
       <sensor id="0" 
+              serial="5"
               config="sensor5.xml"
               enabled="true">
         <description>Dat einzige Ding dat mir habbe</description>
                 flippedy="false"
                 phi="0"
                 />
-
       </sensor>
+      <config>delay1</config>
+      <config>prog_ram</config>
+      <config>set_timing_10mhz</config>
+      <config>set_inout</config>
+      <config>maps_reset_before_off</config>
+      <config>maps_reset_after_on</config>
     </chain>
+    <config>waitbeforestart_6us</config>
+    <config>trigger_init_sequence</config>
   </controller>
 </DetectorSetup>
index 02792e0b3958e2b8e62820a1036ee3d4a54195d8..d8451f41d63906052a21f27fb4a4c200100772cb 100755 (executable)
 
 use warnings;
 use File::chdir;
+use XML::LibXML;
+use Getopt::Long;
+use Data::Dumper;
+$Data::Dumper::Terse = 1;
+$Data::Dumper::Useqq = 0;
+
+my ($help, $man, $verbose, $setup, $dryrun);
+my $defaultIniPath = "/tmp/inifiles";
+
+
+###############################
+## Get options
+###############################
+Getopt::Long::Configure(qw(gnu_getopt));
+GetOptions(
+           'help|h' => \$help,
+           'man' => \$man,
+           'dryrun' => \$dryrun,
+           'verbose|v+' => \$verbose,
+          ) or pod2usage(2);
+pod2usage(1) if $help;
+pod2usage(-exitval => 0, -verbose => 2) if $man;
 
 
 die "DAQOPSERVER not set in environment. Points to trbnetd that provides access to TRB.\n" unless (defined $ENV{'DAQOPSERVER'});
 die "JTAGPATH not set in environment. Points to JTAG tools (e.g. ui.pl).\n" unless (defined $ENV{'JTAGPATH'});
-die "JTAGCONFIGPATH not set in environment. Points to JTAG config files (e.g. chains.ini).\n" unless (defined $ENV{'JTAGCONFIGPATH'});
 
+unless (defined $ENV{'JTAGCONFIGPATH'}) {
+  printf "JTAGCONFIGPATH not set in environment. Points to JTAG config files (e.g. chains.ini). Using default.\n" if $verbose;
+  $ENV{'JTAGCONFIGPATH'} = $defaultIniPath;
+  mkdir($defaultIniPath) unless (-e $defaultIniPath);
+  }
+  
+  
+###############################
+## Read setup xml file
+###############################  
+my @commands;
+my $parser = XML::LibXML->new(line_numbers => 1);
+my $filename = $ARGV[0];
+my $db = $parser->parse_file($filename);
+my $name = $db->getDocumentElement->getAttribute('name');
+print STDERR "Loading setup $name from file $filename\n" if $verbose;
+  
+foreach my $curctrl ($db->getDocumentElement->findnodes('controller')) {
+  print STDERR "Found controller id ".$curctrl->getAttribute('id')."\n" if $verbose;
+  foreach my $curchain ($curctrl->findnodes('chain')) {
+    print STDERR "  Found chain id ".$curchain->getAttribute('id')."\n" if $verbose;
+    foreach my $cursensor ($curchain->findnodes('sensor')) {
+      print STDERR "    Found sensor id ".$cursensor->getAttribute('id')."\n" if $verbose;
+      foreach my $cfg ($cursensor->findnodes('config')) {
+        print STDERR "      Found config\n";
+        push(@commands,"./ui.pl -b ".$curctrl->getAttribute('name')." -o ".$cfg->textContent());
+        }
+      }
+    foreach my $cfg ($curchain->findnodes('config')) {
+      print STDERR "    Found config\n";
+      push(@commands,"./ui.pl -b ".$curctrl->getAttribute('name')." -c ".$curchain->getAttribute("name")." -o ".$cfg->textContent());
+      }
+    }
+  foreach my $cfg ($curctrl->findnodes('config')) {
+    print STDERR "  Found config\n";
+    push(@commands,"./ui.pl -b ".$curctrl->getAttribute('name')." -o ".$cfg->textContent());
+    }
+  }
+
+
+###############################
+## Do whatever has to be done
+###############################
 
 local $CWD = $ENV{'JTAGPATH'};
-qx(./ui.pl -b board01 -o waitbeforestart_6us);
-qx(./ui.pl -b board01 -c newchain1 -o "delay1");
-qx(./ui.pl -b board01 -c newchain1 -o "prog_ram");
-qx(./ui.pl -b board01 -c newchain1 -o "set_timing_10mhz");
-qx(./ui.pl -b board01 -c newchain1 -o "set_inout");
-qx(./ui.pl -b board01 -c newchain1 -o "maps_reset_before_off");
-qx(./ui.pl -b board01 -c newchain1 -o "maps_reset_after_on");
-qx(./ui.pl -b board01 -o trigger_init_sequence);
+foreach my $cmd (@commands) {
+  execute($cmd);
+  }
+  
+  
+  
+  
+###############################
+## Just another execute sub
+###############################
+sub execute {
+  my @o;
+  $o = qx($_[0]) unless $dryrun;
+  print "Not running> $_[0]\n" if $dryrun;
+  print Dumper @o if $verbose;
+  }
+
+
+print "\n";
+
+=head1 NAME
+
+startup.pl - Run the necessary steps to configure and start MAPS sensors.
+
+=head1 SYNOPSIS
+
+startup.pl filename
+
+ Options:
+   -h, --help     brief help message
+   -v, --verbose  be verbose to STDERR
+   -w, --warnings print warnings to STDERR
+
+=head1 OPTIONS
+
+=over 8
+
+=item B<--help>
+
+Print a brief help message and exits.
+
+=item B<--verbose>
+
+Print some information what is going on.
+
+=item B<--dryrun>
+
+Do everything despite actually executing configuration scripts.
+
+=back
+
+=head1 DESCRIPTION
+
+B<This program> runs the necessary steps to configure and start MAPS sensors
 
+=cut