]> jspc29.x-matter.uni-frankfurt.de Git - mvdsensorcontrol.git/commitdiff
now with more error reports: e.g. specification mismatch, circular includes
authorMichael Wiebusch <stratomaster@gmx.net>
Wed, 3 Jul 2013 15:05:03 +0000 (17:05 +0200)
committerMichael Wiebusch <stratomaster@gmx.net>
Wed, 3 Jul 2013 15:05:03 +0000 (17:05 +0200)
xml_spielwiese/cgitest.pl

index 8bbbf0d3f37caac42fe3f4f4fa29299f8b2d76ac..c76bf2e8c0027fa27f09e841cb2f7415bfb9318a 100755 (executable)
@@ -4,7 +4,13 @@ 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!
 
+# DONE
+# do not include wrong type, different specfile
+# whine, wenn specfile/setfiles not found
+# supress circular dependencies
+# nested include graphic
 
 my $me = "cgitest.pl";
 
@@ -66,6 +72,7 @@ my $specfileName = "";
 my $setfileName  = "";
 my $spectree;
 my $settree;
+my $setMapsType;
 
 my %fileLevelHash;
 
@@ -83,6 +90,10 @@ if ( $cgiHash{'print'} eq 'fileSelection' ) {
 
 if ( $cgiHash{'print'} eq 'spectree' ) {
        print "<div class='header'>Available Settings</div>\n";
+       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>";
 
@@ -91,6 +102,10 @@ if ( $cgiHash{'print'} eq 'spectree' ) {
 
 if ( $cgiHash{'print'} eq 'settree' ) {
        print "<div class='header'>Selected Settings</div>\n";
+       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
 
@@ -216,6 +231,10 @@ 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>";
+               exit;
+       }
        $spectree     = $parser->parse_file($specfile);
 }
 
@@ -223,6 +242,7 @@ sub parseSet {
        $setfileName = $_[0];
        $setfile     = $confDir . "/" . $_[0];
        $settree     = $parser->parse_file($setfile);
+       $setMapsType = $settree->findvalue("/MAPS/\@type");
 }
 
 sub buildAncestry {    # recursive
@@ -278,6 +298,25 @@ sub buildAncestry {    # recursive
 
        my $ancestorFileName = $xmltree->findvalue("/MAPS/\@inheritSettingsFrom")
          || "";
+       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;   
+       }
+       # 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 ( $ancestorFileName eq "" ) {
 
                # this block is executed when an ancestor is found
@@ -821,7 +860,8 @@ function changeAncestor(newAncestor){
 function selectedConfigFile(){
 if(document.getElementById("fileSelector")){
 var e = document.getElementById("fileSelector");
-return e.options[e.selectedIndex].text;}
+return e.options[e.selectedIndex].text;
+}
 else {
        return "";
 }
@@ -875,6 +915,7 @@ showElement(key);
 
 
 function loadFile(){
+
 debugOutput("load data from "+selectedConfigFile());
 visHash = new Object();
 reloadSpecTree();