]> jspc29.x-matter.uni-frankfurt.de Git - mvdsensorcontrol.git/commitdiff
added delete button, system now checking if included files all exist
authorMichael Wiebusch <stratomaster@gmx.net>
Thu, 4 Jul 2013 09:55:46 +0000 (11:55 +0200)
committerMichael Wiebusch <stratomaster@gmx.net>
Thu, 4 Jul 2013 09:55:46 +0000 (11:55 +0200)
config/settings.xml [deleted file]
xml_spielwiese/cgitest.pl

diff --git a/config/settings.xml b/config/settings.xml
deleted file mode 100644 (file)
index 2267ce0..0000000
+++ /dev/null
@@ -1,3 +0,0 @@
-<?xml version="1.0"?>
-<MAPS type="MIMOSA26" specDbFile="MIMOSA26_JTAG_SPEC.xml">
-<register name="DAC_BIAS"><field name="ID2PWRS" value="118"/></register><register name="CONTROL_PIX_REG"><field name="SelPad1" value="010"/></register></MAPS>
index c76bf2e8c0027fa27f09e841cb2f7415bfb9318a..dd97f5ae34da5b9bd35fdf8b116f929185a9b96e 100755 (executable)
@@ -2,15 +2,18 @@
 print "Content-type: text/html\n\n";
 
 # TODO
-# do not accept "..." as input file
 # what happens when files are not writable?
-# cannot inherit from files with the wrong specification!
+# delete button
+# field size information
+# check for maximum value
 
 # DONE
 # do not include wrong type, different specfile
 # whine, wenn specfile/setfiles not found
 # supress circular dependencies
 # nested include graphic
+# cannot inherit from files with the wrong specification!
+# do not accept "..." as input file
 
 my $me = "cgitest.pl";
 
@@ -90,24 +93,26 @@ if ( $cgiHash{'print'} eq 'fileSelection' ) {
 
 if ( $cgiHash{'print'} eq 'spectree' ) {
        print "<div class='header'>Available Settings</div>\n";
-       unless(-e $confDir."/".$cgiHash{'configFile'}){
+       unless ( -e $confDir . "/" . $cgiHash{'configFile'} ) {
                print "<p>config file does not exist</p>";
                exit;
        }
        parseSetAndSpec( $cgiHash{'configFile'} );
-       print "<div class='ancestorInfo' align='center'>specifications loaded from $specfileName</div>";
+       print
+"<div class='ancestorInfo' align='center'>specifications loaded from $specfileName</div>";
 
        print_registers($specfile);
 }
 
 if ( $cgiHash{'print'} eq 'settree' ) {
        print "<div class='header'>Selected Settings</div>\n";
-       unless(-e $confDir."/".$cgiHash{'configFile'}){
+       unless ( -e $confDir . "/" . $cgiHash{'configFile'} ) {
                print "<p>config file does not exist</p>";
                exit;
        }
        parseSetAndSpec( $cgiHash{'configFile'} );
-       buildAncestry($setfileName,""); #arg1: target file, # arg2: recursion parent target file
+       buildAncestry( $setfileName, "" )
+         ;    #arg1: target file, # arg2: recursion parent target file
 
        #       assignFieldColors();#obsolete
 
@@ -140,6 +145,11 @@ if ( defined $cgiHash{'action'} ) {
        if ( $cgiHash{'action'} eq 'createFile' ) {
                createFile( $cgiHash{'configFile'}, $cgiHash{'specFile'} );
        }
+
+       if ( $cgiHash{'action'} eq 'deleteFile' ) {
+               deleteFile( $cgiHash{'configFile'} );
+       }
+
        if ( $cgiHash{'action'} eq 'changeAncestor' ) {
                parseSet( $cgiHash{'configFile'} );
                changeAncestor( $cgiHash{'newAncestor'} );
@@ -149,6 +159,17 @@ if ( defined $cgiHash{'action'} ) {
 
 #################### SUBLAND ######################
 
+sub deleteFile {
+       my $configFileName = $_[0];
+       my $configFile     = $confDir . "/" . $configFileName;
+       unless ( -e $configFile ) {
+               print "<p>selected file not found</p>";
+               exit;
+       }
+       unlink($configFile);
+       print "<p>config file was deleted</p>";
+}
+
 sub createFile {
        my $configFileName = $_[0];
 
@@ -182,6 +203,7 @@ sub print_ancestorInfo {
 
        #print "my ancestry:<br>";
        print "<table class='fileLevel'><tr><td>";
+
        #print "<table class='fileLevel1' padding=0 spacing=0><tr><td>";
        if (@ancestryList)
        {    # if ancestry is not empty, print current ancestry as a nested table
@@ -195,8 +217,8 @@ sub print_ancestorInfo {
                for my $ancestor (@ancestryList) {
 
                        print "$ancestor</td>";
-                       if ($fileLevelHash{$ancestor} eq "1"){
-                                               print <<EOF;
+                       if ( $fileLevelHash{$ancestor} eq "1" ) {
+                               print <<EOF;
 <td class='button_move' title='unlink includes' onclick='changeAncestor("")'>&nbsp;X&nbsp;</td>
 EOF
 
@@ -210,6 +232,7 @@ EOF
                        "changeAncestor(this.options[this.selectedIndex].text)" );
 
        }
+
        #print "</td></tr></table>";
        print "</td></tr><tr><td>";
        print "$setfileName";
@@ -231,11 +254,12 @@ sub parseSetAndSpec {
        parseSet( $_[0] );
        $specfileName = $settree->findvalue("/MAPS/\@specDbFile");
        $specfile     = $specDir . "/" . $specfileName;
-       unless(-e $specfile){
-               print "<p>specification file \"$specfileName\" could not be found in the specification directory \"$specDir\"</p>";
+       unless ( -e $specfile ) {
+               print
+"<p>specification file \"$specfileName\" could not be found in the specification directory \"$specDir\"</p>";
                exit;
        }
-       $spectree     = $parser->parse_file($specfile);
+       $spectree = $parser->parse_file($specfile);
 }
 
 sub parseSet {
@@ -246,46 +270,67 @@ sub parseSet {
 }
 
 sub buildAncestry {    # recursive
-       my $xmlfileName = $_[0];
+       my $xmlfileName       = $_[0];
        my $parentXmlFileName = $_[1];
        if ( $xmlfileName eq "" ) {
                return;
        }
-       
-       if ($parentXmlFileName eq $xmlfileName) {
+
+       # check if you are not including yourself
+       if ( $parentXmlFileName eq $xmlfileName ) {
                print "<p>It's a bad idea to try to include yourself!</p>";
-                                       print "<p>The faulty include directive was removed.</p>";
-                       print "<p><input type='button' onclick='loadFile()' value='back'></p>";
-                       changeAncestor(""); # break the evil circle where it was closed!
-                       exit;
+               print "<p>The faulty include directive was removed.</p>";
+               print "<p><input type='button' onclick='loadFile()' value='back'></p>";
+               changeAncestor("");    # break the evil circle where it was closed!
+               exit;
        }
-       
-       for (@ancestryList){ # suppres circular dependencies!
-               if ($xmlfileName eq $_) {
 
+       # check against circular dependencies
+       for (@ancestryList) {      # suppres circular dependencies!
+               if ( $xmlfileName eq $_ ) {
 
                        print "<p>No circular includes, please!</p>";
                        print "<p>";
-                       print $parentXmlFileName."->".join("->",@ancestryList)."->".$setfileName;
+                       print $parentXmlFileName. "->"
+                         . join( "->", @ancestryList ) . "->"
+                         . $setfileName;
                        print "</p>";
                        print "<p>The faulty include directive was removed.</p>";
-                       print "<p><input type='button' onclick='loadFile()' value='back'></p>";
-                       changeAncestor(""); # break the evil circle where it was closed!
+                       print
+                         "<p><input type='button' onclick='loadFile()' value='back'></p>";
+                       changeAncestor("");    # break the evil circle where it was closed!
                        exit;
+
                        #die "no circular includes please! $!";
                        return;
                }
        }
 
+       my $xmlfile = $confDir . "/" . $xmlfileName;
+
+       # check if all files in the ancestry really exist!
+       unless (-e $xmlfile) {
+
+               print "<p>You are trying to include a file that does not exist</p>";
+               print "<p>";
+               print "<strike>".$xmlfileName."</strike>"."->"
+                 . join( "->", @ancestryList ) . "->"
+                 . $setfileName;
+               print "</p>";
+               print "<p>The faulty include directive was removed.</p>";
+               print "<p><input type='button' onclick='loadFile()' value='back'></p>";
+               changeAncestor("");    # break the evil circle where it was closed!
+               exit;
+               return;
+       }
 
 
-       
-       my $xmlfile = $confDir . "/" . $xmlfileName;
        my $xmltree;
        if ( $xmlfile eq $setfile ) {
                $xmltree = $settree;
        }
        else {
+
                # we got an ancestor here, write him to the ancestor list
                unshift( @ancestryList, $xmlfileName );
                $xmltree = $parser->parse_file($xmlfile);
@@ -298,29 +343,33 @@ sub buildAncestry {    # recursive
 
        my $ancestorFileName = $xmltree->findvalue("/MAPS/\@inheritSettingsFrom")
          || "";
-       my $currentMapsType = $xmltree->findvalue("/MAPS/\@type");
+       my $currentMapsType     = $xmltree->findvalue("/MAPS/\@type");
        my $currentSpecFileName = $xmltree->findvalue("/MAPS/\@specDbFile");
-       
+
        # compliance checking MAPS type
-       unless ($currentMapsType eq $setMapsType){
-               print "<p>the included config file does not comply with the MAPS type of the current config file</p>";
-                               print "<p>The faulty include directive was removed.</p>";
-                       print "<p><input type='button' onclick='loadFile()' value='back'></p>";
-                       changeAncestor(""); # break the evil circle where it was closed!
-                       exit;   
+       unless ( $currentMapsType eq $setMapsType ) {
+               print
+"<p>the included config file does not comply with the MAPS type of the current config file</p>";
+               print "<p>The faulty include directive was removed.</p>";
+               print "<p><input type='button' onclick='loadFile()' value='back'></p>";
+               changeAncestor("");    # break the evil circle where it was closed!
+               exit;
        }
+
        # compliance checking specDbFile
-       unless ($currentSpecFileName eq $specfileName){
-               print "<p>the included config file is not based on the same specification file as current config file</p>";
-                               print "<p>The faulty include directive was removed.</p>";
-                       print "<p><input type='button' onclick='loadFile()' value='back'></p>";
-                       changeAncestor(""); # break the evil circle where it was closed!
-                       exit;   
+       unless ( $currentSpecFileName eq $specfileName ) {
+               print
+"<p>the included config file is not based on the same specification file as current config file</p>";
+               print "<p>The faulty include directive was removed.</p>";
+               print "<p><input type='button' onclick='loadFile()' value='back'></p>";
+               changeAncestor("");    # break the evil circle where it was closed!
+               exit;
        }
        unless ( $ancestorFileName eq "" ) {
 
                # this block is executed when an ancestor is found
-               buildAncestry($ancestorFileName,$xmlfileName);    # recursion, second argument is the target file from THIS parent recursion call
+               buildAncestry( $ancestorFileName, $xmlfileName )
+                 ; # recursion, second argument is the target file from THIS parent recursion call
 
         #integrate the current tree into the ancestryTree, overwrite older settings
                mergeTrees( $ancestryTree, $xmltree );
@@ -496,50 +545,74 @@ sub print_fileSelection {
 
        my $configFile = $_[0];
 
-       print "<table>";
-       print "<tr><td>";
-       print "<table>";
-       print "<tr>";
-       print "<td>selected config file:<td>";
-       print "</tr>";
-
-       print "<tr>";
-
-       print "<td>";
+       print "<p>selected config file</p>";
+       print "<p>";
+       
        print_fileSelector( $configFile, "fileSelector", "loadFile()" );
-       print "</td>";
-
-       print "<td>";
        print
 "<input type='button' onclick='loadFile()' value='reload file' class='stdbutton'>";
-       print "</td>";
-
-       print "</tr>";
-
-       print "</table>";
-
-       print "</td>";
-
-       print "<td style='border-right:1px solid #000000'><br></td>";
-
-       print "<td>";
-       print "<table>";
-       print "<tr><td colspan=2>";
-       print "create new config file:";
-       print "</td></tr>";
+       print
+"<input type='button' onclick='deleteFile()' value='delete file' class='stdbutton'>";
 
-       print "<tr><td>";
+       print "</p>";
+       
+       
+       print "<p>create new config file</p>";
+       print "<p>";
        print "<input type='text' value='' id='newFileName'>";
-       print "</td><td>";
        print_specSelector();
-       print "</td><td>";
-       print
-"<input type='button' onclick='createFile()' value='create file' class='stdbutton'>";
-       print "</td></tr>";
+       print "<input type='button' onclick='createFile()' value='create file' class='stdbutton'>";
+       
+       print "</p>";
 
-       print "</table>";
-       print "</td>";
-       print "</tr></table>";
+
+
+#      print "<table>";
+#      print "<tr><td>";
+#      print "<table>";
+#      print "<tr>";
+#      print "<td>selected config file:<td>";
+#      print "</tr>";
+#
+#      print "<tr>";
+#
+#      print "<td>";
+#      print_fileSelector( $configFile, "fileSelector", "loadFile()" );
+#      print "</td>";
+#
+#      print "<td>";
+#      print
+#"<input type='button' onclick='loadFile()' value='reload file' class='stdbutton'>";
+#      print
+#"<input type='button' onclick='deleteFile()' value='delete file' class='stdbutton'>";
+#      print "</td>";
+#
+#      print "</tr>";
+#
+#      print "</table>";
+#
+#      print "</td>";
+#
+#      print "<td style='border-right:1px solid #000000'><br></td>";
+#
+#      print "<td>";
+#      print "<table>";
+#      print "<tr><td colspan=2>";
+#      print "create new config file:";
+#      print "</td></tr>";
+#
+#      print "<tr><td>";
+#      print "<input type='text' value='' id='newFileName'>";
+#      print "</td><td>";
+#      print_specSelector();
+#      print "</td><td>";
+#      print
+#"<input type='button' onclick='createFile()' value='create file' class='stdbutton'>";
+#      print "</td></tr>";
+#
+#      print "</table>";
+#      print "</td>";
+#      print "</tr></table>";
 }
 
 sub changeAncestor {
@@ -856,6 +929,12 @@ function changeAncestor(newAncestor){
        reloadSetTree();
 }
 
+function deleteFile(){
+       var file_ = encodeURIComponent(selectedConfigFile());   
+       getdata('$me?action=deleteFile&configFile='+file_,false);
+       loadFile();
+}
+
 
 function selectedConfigFile(){
 if(document.getElementById("fileSelector")){