@ -6,26 +6,30 @@
*/
*/
# include "src/parser/DeterministicSparseTransitionParser.h"
# include "src/parser/DeterministicSparseTransitionParser.h"
# include "src/exceptions/FileIoException.h"
# include "src/exceptions/WrongFileFormatException.h"
# include "boost/integer/integer_mask.hpp"
# include <cstdlib>
# include <cstdio>
# include <cstring>
# include <clocale>
# include <iostream>
# include <errno.h>
# include <errno.h>
# include <time.h>
# include <time.h>
# include <sys/stat.h>
# include <sys/stat.h>
# include <fcntl.h>
# include <fcntl.h>
# include <locale.h>
# include <locale.h>
# include <cstdlib>
# include <cstdio>
# include <cstring>
# include <clocale>
# include <iostream>
# include <string>
# include "src/exceptions/FileIoException.h"
# include "src/exceptions/WrongFileFormatException.h"
# include "boost/integer/integer_mask.hpp"
# include "log4cplus/logger.h"
# include "log4cplus/logger.h"
# include "log4cplus/loggingmacros.h"
# include "log4cplus/loggingmacros.h"
extern log4cplus : : Logger logger ;
extern log4cplus : : Logger logger ;
namespace storm {
namespace storm {
namespace parser {
namespace parser {
/*!
/*!
* @ brief Perform first pass through the file and obtain number of
* @ brief Perform first pass through the file and obtain number of
@ -39,7 +43,7 @@ namespace parser{
* @ param buf Data to scan . Is expected to be some char array .
* @ param buf Data to scan . Is expected to be some char array .
* @ param maxnode Is set to highest id of all nodes .
* @ param maxnode Is set to highest id of all nodes .
*/
*/
uint_fast64_t DeterministicSparseTransitionParser : : firstPass ( char * buf , uint_fast64_t & maxnode ) {
uint_fast64_t DeterministicSparseTransitionParser : : firstPass ( char * buf , uint_fast64_t & maxnode ) {
uint_fast64_t non_zero = 0 ;
uint_fast64_t non_zero = 0 ;
/*
/*
@ -49,14 +53,14 @@ uint_fast64_t DeterministicSparseTransitionParser::firstPass(char* buf, uint_fas
LOG4CPLUS_ERROR ( logger , " Expected \" STATES \" but got \" " < < std : : string ( buf , 0 , 16 ) < < " \" . " ) ;
LOG4CPLUS_ERROR ( logger , " Expected \" STATES \" but got \" " < < std : : string ( buf , 0 , 16 ) < < " \" . " ) ;
return 0 ;
return 0 ;
}
}
buf + = 7 ; // skip "STATES "
buf + = 7 ; // skip "STATES "
if ( strtol ( buf , & buf , 10 ) = = 0 ) return 0 ;
if ( strtol ( buf , & buf , 10 ) = = 0 ) return 0 ;
buf = trimWhitespaces ( buf ) ;
buf = trimWhitespaces ( buf ) ;
if ( strncmp ( buf , " TRANSITIONS " , 12 ) ! = 0 ) {
if ( strncmp ( buf , " TRANSITIONS " , 12 ) ! = 0 ) {
LOG4CPLUS_ERROR ( logger , " Expected \" TRANSITIONS \" but got \" " < < std : : string ( buf , 0 , 16 ) < < " \" . " ) ;
LOG4CPLUS_ERROR ( logger , " Expected \" TRANSITIONS \" but got \" " < < std : : string ( buf , 0 , 16 ) < < " \" . " ) ;
return 0 ;
return 0 ;
}
}
buf + = 12 ; // skip "TRANSITIONS "
buf + = 12 ; // skip "TRANSITIONS "
if ( ( non_zero = strtol ( buf , & buf , 10 ) ) = = 0 ) return 0 ;
if ( ( non_zero = strtol ( buf , & buf , 10 ) ) = = 0 ) return 0 ;
/*
/*
@ -86,7 +90,7 @@ uint_fast64_t DeterministicSparseTransitionParser::firstPass(char* buf, uint_fas
return 0 ;
return 0 ;
}
}
// not needed anymore
// not needed anymore
//if (row == col) non_zero--;
// if (row == col) non_zero--;
buf = trimWhitespaces ( buf ) ;
buf = trimWhitespaces ( buf ) ;
}
}
@ -104,12 +108,11 @@ uint_fast64_t DeterministicSparseTransitionParser::firstPass(char* buf, uint_fas
*/
*/
DeterministicSparseTransitionParser : : DeterministicSparseTransitionParser ( std : : string const & filename )
DeterministicSparseTransitionParser : : DeterministicSparseTransitionParser ( std : : string const & filename )
: matrix ( nullptr )
{
: matrix ( nullptr ) {
/*
/*
* enforce locale where decimal point is ' . '
* enforce locale where decimal point is ' . '
*/
*/
setlocale ( LC_NUMERIC , " C " ) ;
setlocale ( LC_NUMERIC , " C " ) ;
/*
/*
* open file
* open file
@ -125,8 +128,7 @@ DeterministicSparseTransitionParser::DeterministicSparseTransitionParser(std::st
/*
/*
* if first pass returned zero , the file format was wrong
* if first pass returned zero , the file format was wrong
*/
*/
if ( non_zero = = 0 )
{
if ( non_zero = = 0 ) {
LOG4CPLUS_ERROR ( logger , " Error while parsing " < < filename < < " : erroneous file format. " ) ;
LOG4CPLUS_ERROR ( logger , " Error while parsing " < < filename < < " : erroneous file format. " ) ;
throw storm : : exceptions : : WrongFileFormatException ( ) ;
throw storm : : exceptions : : WrongFileFormatException ( ) ;
}
}
@ -140,10 +142,10 @@ DeterministicSparseTransitionParser::DeterministicSparseTransitionParser(std::st
/*
/*
* read file header , extract number of states
* read file header , extract number of states
*/
*/
buf + = 7 ; // skip "STATES "
buf + = 7 ; // skip "STATES "
checked_strtol ( buf , & buf ) ;
checked_strtol ( buf , & buf ) ;
buf = trimWhitespaces ( buf ) ;
buf = trimWhitespaces ( buf ) ;
buf + = 12 ; // skip "TRANSITIONS "
buf + = 12 ; // skip "TRANSITIONS "
checked_strtol ( buf , & buf ) ;
checked_strtol ( buf , & buf ) ;
/*
/*
@ -153,8 +155,7 @@ DeterministicSparseTransitionParser::DeterministicSparseTransitionParser(std::st
*/
*/
LOG4CPLUS_INFO ( logger , " Attempting to create matrix of size " < < ( maxnode + 1 ) < < " x " < < ( maxnode + 1 ) < < " . " ) ;
LOG4CPLUS_INFO ( logger , " Attempting to create matrix of size " < < ( maxnode + 1 ) < < " x " < < ( maxnode + 1 ) < < " . " ) ;
this - > matrix = std : : shared_ptr < storm : : storage : : SparseMatrix < double > > ( new storm : : storage : : SparseMatrix < double > ( maxnode + 1 ) ) ;
this - > matrix = std : : shared_ptr < storm : : storage : : SparseMatrix < double > > ( new storm : : storage : : SparseMatrix < double > ( maxnode + 1 ) ) ;
if ( this - > matrix = = NULL )
{
if ( this - > matrix = = NULL ) {
LOG4CPLUS_ERROR ( logger , " Could not create matrix of size " < < ( maxnode + 1 ) < < " x " < < ( maxnode + 1 ) < < " . " ) ;
LOG4CPLUS_ERROR ( logger , " Could not create matrix of size " < < ( maxnode + 1 ) < < " x " < < ( maxnode + 1 ) < < " . " ) ;
throw std : : bad_alloc ( ) ;
throw std : : bad_alloc ( ) ;
}
}
@ -166,8 +167,7 @@ DeterministicSparseTransitionParser::DeterministicSparseTransitionParser(std::st
/*
/*
* read all transitions from file
* read all transitions from file
*/
*/
while ( buf [ 0 ] ! = ' \0 ' )
{
while ( buf [ 0 ] ! = ' \0 ' ) {
/*
/*
* read row , col and value .
* read row , col and value .
*/
*/
@ -175,7 +175,7 @@ DeterministicSparseTransitionParser::DeterministicSparseTransitionParser(std::st
col = checked_strtol ( buf , & buf ) ;
col = checked_strtol ( buf , & buf ) ;
val = checked_strtod ( buf , & buf ) ;
val = checked_strtod ( buf , & buf ) ;
this - > matrix - > addNextValue ( row , col , val ) ;
this - > matrix - > addNextValue ( row , col , val ) ;
buf = trimWhitespaces ( buf ) ;
buf = trimWhitespaces ( buf ) ;
}
}
@ -185,5 +185,5 @@ DeterministicSparseTransitionParser::DeterministicSparseTransitionParser(std::st
this - > matrix - > finalize ( ) ;
this - > matrix - > finalize ( ) ;
}
}
} //namespace parser
} //namespace storm
} // namespace parser
} // namespace storm