]> jspc29.x-matter.uni-frankfurt.de Git - mvdsensorcontrol.git/commitdiff
now checking if field values are in allowed range
authorMichael Wiebusch <stratomaster@gmx.net>
Thu, 4 Jul 2013 13:27:45 +0000 (15:27 +0200)
committerMichael Wiebusch <stratomaster@gmx.net>
Thu, 4 Jul 2013 13:27:45 +0000 (15:27 +0200)
layout/jtageditor.css
xml_spielwiese/cgitest.pl

index b19854f006f628741909350c81bcff4b528d839a..dd5b8e0d949ff8f6f2a9a837c1b62dfccba74660 100644 (file)
@@ -99,6 +99,11 @@ table.registers>tbody>tr>td:nth-child(2) {
   }
 
 
+.fieldError
+{
+background:red;
+}
+
 .fileLevel
 {
 background:#CCFFCC;
index dd97f5ae34da5b9bd35fdf8b116f929185a9b96e..227fa0f0849513053da09b559bab42c11751c66a 100755 (executable)
@@ -3,9 +3,6 @@ print "Content-type: text/html\n\n";
 
 # TODO
 # what happens when files are not writable?
-# delete button
-# field size information
-# check for maximum value
 
 # DONE
 # do not include wrong type, different specfile
@@ -14,6 +11,9 @@ print "Content-type: text/html\n\n";
 # nested include graphic
 # cannot inherit from files with the wrong specification!
 # do not accept "..." as input file
+# delete button
+# field size information
+# check for maximum value
 
 my $me = "cgitest.pl";
 
@@ -309,11 +309,13 @@ sub buildAncestry {    # recursive
        my $xmlfile = $confDir . "/" . $xmlfileName;
 
        # check if all files in the ancestry really exist!
-       unless (-e $xmlfile) {
+       unless ( -e $xmlfile ) {
 
                print "<p>You are trying to include a file that does not exist</p>";
                print "<p>";
-               print "<strike>".$xmlfileName."</strike>"."->"
+               print "<strike>"
+                 . $xmlfileName
+                 . "</strike>" . "->"
                  . join( "->", @ancestryList ) . "->"
                  . $setfileName;
                print "</p>";
@@ -324,7 +326,6 @@ sub buildAncestry {    # recursive
                return;
        }
 
-
        my $xmltree;
        if ( $xmlfile eq $setfile ) {
                $xmltree = $settree;
@@ -545,9 +546,9 @@ sub print_fileSelection {
 
        my $configFile = $_[0];
 
-       print "<p>selected config file</p>";
+       print "<h3>selected config file</h3>";
        print "<p>";
-       
+
        print_fileSelector( $configFile, "fileSelector", "loadFile()" );
        print
 "<input type='button' onclick='loadFile()' value='reload file' class='stdbutton'>";
@@ -555,17 +556,23 @@ sub print_fileSelection {
 "<input type='button' onclick='deleteFile()' value='delete file' class='stdbutton'>";
 
        print "</p>";
-       
-       
-       print "<p>create new config file</p>";
+
+       print "<h3>create new config file</h3>";
        print "<p>";
+       print "<table><tr>";
+       print "<td>filename</td><td>based on specification</td><td></td>";
+       print "</tr>";
+       print "<tr>";
+       print "<td>";
        print "<input type='text' value='' id='newFileName'>";
+       print "</td><td>";
        print_specSelector();
-       print "<input type='button' onclick='createFile()' value='create file' class='stdbutton'>";
-       
-       print "</p>";
-
+       print "</td><td>";
+       print
+"<input type='button' onclick='createFile()' value='create file' class='stdbutton'>";
+       print "</td></tr></table>";
 
+       print "</p>";
 
 #      print "<table>";
 #      print "<tr><td>";
@@ -822,7 +829,14 @@ sub print_fields {
                my $isHeritageFrom = $field->findvalue("./\@isHeritageFrom") || "";
                my $readOnlyFlag   = 0;
                my $fieldValue     = $field->findvalue("./\@value");
-               my $fieldDescr     = prepare_text(
+               my $fieldSize      =
+                 $spectree->findvalue( "/MAPS/register[\@name='"
+                         . $registerName
+                         . "']/field[\@name='"
+                         . $fieldName
+                         . "']/\@size" )
+                 || "n/a";
+               my $fieldDescr = prepare_text(
                        $spectree->findvalue(
                                    "/MAPS/register[\@name='"
                                  . $registerName
@@ -833,6 +847,14 @@ sub print_fields {
                          || "n/a"
                );
 
+               my $maxFieldVal = 2**$fieldSize;
+               my $sizeInfo    =
+                 sprintf(
+                       "Field contains %d bits, possible values: 0-%d (0x0-0x%x)\n\n",
+                       $fieldSize, $maxFieldVal, $maxFieldVal );
+
+               $fieldDescr = $sizeInfo . $fieldDescr;
+
                unless ( $isHeritageFrom eq "" ) {
                        $fieldDescr =
                          "Field was inherited from $isHeritageFrom\n\n" . $fieldDescr;
@@ -881,6 +903,11 @@ EOF
                        }
                }
                print "</tr>";
+               if (   ( any2dec($fieldValue) < 0 )
+                       or ( any2dec($fieldValue) > $maxFieldVal ) )
+               {
+                       print "<tr class='fieldError'><td colspan = 4 align='center'>!!!Above value not in allowed range!!!</td></tr>";    # just debug
+               }
        }
        print "</table>";
 
@@ -914,6 +941,20 @@ sub read_input {
        %FORM;
 }
 
+sub any2dec {    # converts numeric expressions 0x, 0b or decimal to decimal
+
+       my $argument = $_[0];
+
+       #print "any2dec input argument $argument\n";
+
+       if ( $argument =~ m/0[bxBX]/ ) {
+               return oct $argument;
+       }
+       else {
+               return $argument;
+       }
+}
+
 sub printJavaScripts {
 
 ####### javascript function land ################