# 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";
my $setfileName = "";
my $spectree;
my $settree;
+my $setMapsType;
my %fileLevelHash;
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>";
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
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);
}
$setfileName = $_[0];
$setfile = $confDir . "/" . $_[0];
$settree = $parser->parse_file($setfile);
+ $setMapsType = $settree->findvalue("/MAPS/\@type");
}
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
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 "";
}
function loadFile(){
+
debugOutput("load data from "+selectedConfigFile());
visHash = new Object();
reloadSpecTree();