| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481 |
- // process jam regression test output into XML -----------------------------//
- // (C) Copyright Beman Dawes 2002. Permission to copy,
- // use, modify, sell and distribute this software is granted provided this
- // copyright notice appears in all copies. This software is provided "as is"
- // without express or implied warranty, and with no claim as to its
- // suitability for any purpose.
- #include "detail/tiny_xml.hpp"
- #include "boost/filesystem/operations.hpp"
- #include "boost/filesystem/fstream.hpp"
- #include "boost/filesystem/exception.hpp"
- #include <iostream>
- #include <string>
- #include <map>
- #include <utility> // for make_pair
- #include <ctime>
- using std::string;
- namespace xml = boost::tiny_xml;
- namespace fs = boost::filesystem;
- #define BOOST_NO_CPP_MAIN_SUCCESS_MESSAGE
- #include <boost/test/included/prg_exec_monitor.hpp>
- namespace
- {
- typedef std::map< string, string > test2prog_map; // test_name, test_file_path
- test2prog_map test2prog;
- // append_html -------------------------------------------------------------//
- void append_html( const string & src, string & target )
- {
- // there are a few lines we want to ignore
- if ( src.find( "th target..." ) != string::npos
- || src.find( "cc1plus.exe: warning: changing search order for system directory" ) != string::npos
- || src.find( "cc1plus.exe: warning: as it has already been specified as a non-system directory" ) != string::npos
- ) return;
- for ( string::size_type pos = 0; pos < src.size(); ++pos )
- {
- if ( src[pos] == '<' ) target += "<";
- else if ( src[pos] == '>' ) target += ">";
- else if ( src[pos] == '&' ) target += "&";
- else target += src[pos];
- }
- }
- // timestamp ---------------------------------------------------------------//
- string timestamp()
- {
- char run_date[128];
- std::time_t tod;
- std::time( &tod );
- std::strftime( run_date, sizeof(run_date),
- "%Y-%m-%d %X UTC", std::gmtime( &tod ) );
- return string( run_date );
- }
- // convert path separators to forward slashes ------------------------------//
- void convert_path_separators( string & s )
- {
- for ( string::iterator itr = s.begin(); itr != s.end(); ++itr )
- if ( *itr == '\\' || *itr == '!' ) *itr = '/';
- }
- // extract a directory from a jam target string ----------------------------//
- string target_directory( const string & s )
- {
- string temp( s );
- convert_path_separators( temp );
- temp.erase( temp.find_last_of( "/" ) );
- string::size_type pos = temp.find_last_of( " " );
- if ( pos != string::npos ) temp.erase( 0, pos+1 );
- return temp;
- }
- string toolset( const string & s )
- {
- string t( s );
- string::size_type pos = t.find( "/bin/" );
- if ( pos != string::npos ) pos += 5;
- else return "";
- pos = t.find( "/", pos );
- if ( pos != string::npos ) pos += 1;
- else return "";
- return t.substr( pos, t.find( "/", pos ) - pos );
- }
- string test_name( const string & s )
- {
- string t( s );
- string::size_type pos = t.find( "/bin/" );
- if ( pos != string::npos ) pos += 5;
- else return "";
- return t.substr( pos, t.find( ".", pos ) - pos );
- }
- // the format of paths is really kinky, so convert to normal form
- // first path is missing the leading "..\".
- // first path is missing "\bin" after "status".
- // second path is missing the leading "..\".
- // second path is missing "\bin" after "build".
- // second path uses "!" for some separators.
- void parse_skipped_msg( const string & msg,
- string & first_dir, string & second_dir )
- {
- first_dir.clear();
- second_dir.clear();
- string::size_type start_pos( msg.find( '<' ) );
- if ( start_pos == string::npos ) return;
- ++start_pos;
- string::size_type end_pos( msg.find( '>', start_pos ) );
- first_dir += msg.substr( start_pos, end_pos - start_pos );
- start_pos = first_dir.rfind( '!' );
- convert_path_separators( first_dir );
- first_dir.insert( first_dir.find( '/', start_pos + 1), "/bin" );
- //std::cout << first_dir << std::endl;
- start_pos = msg.find( '<', end_pos );
- if ( start_pos == string::npos ) return;
- ++start_pos;
- end_pos = msg.find( '>', start_pos );
- second_dir += msg.substr( start_pos, end_pos - start_pos );
- start_pos = second_dir.rfind( '!' );
- convert_path_separators( second_dir );
- second_dir.insert( second_dir.find( '/', start_pos + 1), "/bin" );
- //std::cout << second_dir << std::endl;
- }
- // test_log hides database details -----------------------------------------//
- class test_log
- : boost::noncopyable
- {
- const string & m_target_directory;
- xml::element_ptr m_root;
- public:
- test_log( const string & target_directory,
- const string & test_name,
- const string & toolset )
- : m_target_directory( target_directory )
- {
- fs::path pth( target_directory );
- pth /= "test_log.xml";
- fs::ifstream file( pth );
- if ( !file )
- {
- string test_program, library_name;
- test2prog_map::iterator itr( test2prog.find( test_name ) );
- if ( itr != test2prog.end() )
- {
- test_program = itr->second;
- string::size_type start_pos( test_program.find( "libs/" ) );
- if ( start_pos != string::npos )
- {
- start_pos += 5;
- library_name = test_program.substr( start_pos,
- test_program.find( '/', start_pos )-start_pos );
- }
- }
- m_root.reset( new xml::element( "test-log" ) );
- m_root->attributes.push_back(
- xml::attribute( "library", library_name ) );
- m_root->attributes.push_back(
- xml::attribute( "test-name", test_name ) );
- m_root->attributes.push_back(
- xml::attribute( "test-program", test_program ) );
- m_root->attributes.push_back(
- xml::attribute( "target-directory", target_directory ) );
- m_root->attributes.push_back(
- xml::attribute( "toolset", toolset ) );
- }
- else // existing file
- {
- m_root = xml::parse( file, pth.string() );
- }
- }
- ~test_log()
- {
- fs::path pth( m_target_directory );
- pth /= "test_log.xml";
- fs::ofstream file( pth );
- if ( !file )
- throw fs::filesystem_error( "process_jam_long.cpp",
- pth, "can't open output file" );
- xml::write( *m_root, file );
- }
- const string & target_directory() const { return m_target_directory; }
- void remove_action( const string & action_name )
- // no effect if action_name not found
- {
- xml::element_list::iterator itr;
- for ( itr = m_root->elements.begin();
- itr != m_root->elements.end() && (*itr)->name != action_name;
- ++itr ) {}
- if ( itr != m_root->elements.end() ) m_root->elements.erase( itr );
- }
- void add_action( const string & action_name,
- const string & result,
- const string & timestamp,
- const string & content )
- {
- remove_action( action_name );
- xml::element_ptr action( new xml::element(action_name) );
- m_root->elements.push_back( action );
- action->attributes.push_back( xml::attribute( "result", result ) );
- action->attributes.push_back( xml::attribute( "timestamp", timestamp ) );
- action->content = content;
- }
- };
- // message_manager maps input messages into test_log actions ---------------//
- class message_manager
- : boost::noncopyable
- {
- string m_action_name; // !empty() implies action pending
- // IOW, a start_message awaits stop_message
- string m_target_directory;
- string m_test_name;
- string m_toolset;
- // data needed to stop further compile action after a compile failure
- // detected in the same target directory
- string m_previous_target_directory;
- bool m_compile_failed;
- public:
- ~message_manager() { /*assert( m_action_name.empty() );*/ }
- void start_message( const string & action_name,
- const string & target_directory,
- const string & test_name,
- const string & toolset,
- const string & prior_content )
- {
- if ( !m_action_name.empty() ) stop_message( prior_content );
- m_action_name = action_name;
- m_target_directory = target_directory;
- m_test_name = test_name;
- m_toolset = toolset;
- if ( m_previous_target_directory != target_directory )
- {
- m_previous_target_directory = target_directory;
- m_compile_failed = false;
- }
- }
- void stop_message( const string & content )
- {
- if ( m_action_name.empty() ) return;
- stop_message( m_action_name, m_target_directory,
- "succeed", timestamp(), content );
- }
- void stop_message( const string & action_name,
- const string & target_directory,
- const string & result,
- const string & timestamp,
- const string & content )
- // the only valid action_names are "compile", "link", "run", "lib"
- {
- // my understanding of the jam output is that there should never be
- // a stop_message that was not preceeded by a matching start_message.
- assert( m_action_name == action_name );
- assert( m_target_directory == target_directory );
- assert( result == "succeed" || result == "fail" );
- // if test_log.xml entry needed, create it
- if ( !m_compile_failed
- || action_name != "compile"
- || m_previous_target_directory != target_directory )
- {
- if ( action_name == "compile"
- && result == "fail" ) m_compile_failed = true;
- test_log tl( target_directory, m_test_name, m_toolset );
- // dependency removal
- if ( action_name == "lib" )
- {
- tl.remove_action( "compile" );
- tl.remove_action( "link" );
- tl.remove_action( "run" );
- }
- else if ( action_name == "compile" )
- {
- tl.remove_action( "link" );
- tl.remove_action( "run" );
- if ( result == "fail" ) m_compile_failed = true;
- }
- else if ( action_name == "link" ) { tl.remove_action( "run" ); }
- // dependency removal won't work right with random names, so assert
- else { assert( action_name == "run" ); }
- // add the stop_message action
- tl.add_action( action_name, result, timestamp, content );
- }
- m_action_name = ""; // signal no pending action
- m_previous_target_directory = target_directory;
- }
- };
- }
- // main --------------------------------------------------------------------//
- int cpp_main( int argc, char ** argv )
- {
- string boost_root_relative_initial;
- fs::path boost_root( fs::initial_path() );
- while ( !boost_root.empty()
- && !fs::exists( boost_root / "libs" ) )
- {
- boost_root = boost_root.branch_path();
- boost_root_relative_initial += "../";
- }
- if ( boost_root.empty() )
- {
- std::cout << "must be run from within the boost-root directory tree\n";
- return 1;
- }
- message_manager mgr;
- string line;
- string content;
- bool capture_lines = false;
- // This loop looks at lines for certain signatures, and accordingly:
- // * Calls start_message() to start capturing lines. (start_message() will
- // automatically call stop_message() if needed.)
- // * Calls stop_message() to stop capturing lines.
- // * Capture lines if line capture on.
- while ( std::getline( std::cin, line ) )
- {
- // std::cout << line << "\n";
- // create map of test-name to test-file-path
- if ( line.find( "(boost-test " ) == 0 )
- {
- string test_name, test_file_path;
- string::size_type colon = line.find( ":" );
- if ( colon != string::npos )
- {
- test_name = line.substr( 13, colon-15 );
- test_file_path = line.substr( colon+3,
- line.find( "\"", colon+3 )-colon-3 );
- convert_path_separators( test_file_path );
- test2prog.insert( std::make_pair( test_name, test_file_path ) );
- // std::cout << test_name << ", " << test_file_path << "\n";
- continue;
- }
- }
- // these actions represent both the start of a new action
- // and the end of a failed action
- else if ( line.find( "C++-action " ) != string::npos
- || line.find( "vc-C++ " ) != string::npos
- || line.find( "C-action " ) != string::npos
- || line.find( "Cc-action " ) != string::npos
- || line.find( "Link-action " ) != string::npos
- || line.find( "vc-Link " ) != string::npos )
- {
- string action( ( line.find( "Link-action " ) != string::npos
- || line.find( "vc-Link " ) != string::npos )
- ? "link" : "compile" );
- if ( line.find( "...failed " ) != string::npos )
- mgr.stop_message( action, target_directory( line ),
- "fail", timestamp(), content );
- else
- {
- string target_dir( target_directory( line ) );
- mgr.start_message( action, target_dir,
- test_name( target_dir ), toolset( target_dir ), content );
- }
- content = "\n";
- capture_lines = true;
- }
- // these actions are only used to stop the previous action
- else if ( line.find( "-Archive" ) != string::npos
- || line.find( "MkDir" ) == 0 )
- {
- mgr.stop_message( content );
- content.clear();
- capture_lines = false;
- }
- else if ( line.find( "execute-test" ) != string::npos )
- {
- if ( line.find( "...failed " ) != string::npos )
- {
- mgr.stop_message( "run", target_directory( line ),
- "fail", timestamp(), content );
- content = "\n";
- capture_lines = true;
- }
- else
- {
- string target_dir( target_directory( line ) );
- mgr.start_message( "run", target_dir,
- test_name( target_dir ), toolset( target_dir ), content );
- // contents of .output file for content
- capture_lines = false;
- content = "\n";
- fs::ifstream file( fs::path(target_dir)
- / (test_name(target_dir) + ".output") );
- if ( file )
- {
- string ln;
- while ( std::getline( file, ln ) )
- {
- append_html( ln, content );;
- content += "\n";
- }
- }
- }
- }
- // bjam indicates some prior dependency failed by a "...skipped" message
- else if ( line.find( "...skipped <" ) != string::npos )
- {
- mgr.stop_message( content );
- content.clear();
- capture_lines = false;
- if ( line.find( ".exe for lack of " ) != string::npos )
- {
- capture_lines = true;
- string target_dir;
- string lib_dir;
- parse_skipped_msg( line, target_dir, lib_dir );
- if ( target_dir != lib_dir ) // it's a lib problem
- {
- target_dir.insert( 0, boost_root_relative_initial );
- mgr.start_message( "lib", target_dir,
- test_name( target_dir ), toolset( target_dir ), content );
- content = lib_dir;
- mgr.stop_message( "lib", target_dir, "fail", timestamp(), content );
- content = "\n";
- }
- }
- }
- else if ( line.find( "**passed**" ) != string::npos
- || line.find( "failed-test-file " ) != string::npos
- || line.find( "command-file-dump" ) != string::npos )
- {
- mgr.stop_message( content );
- content = "\n";
- capture_lines = true;
- }
- else if ( capture_lines ) // hang onto lines for possible later use
- {
- append_html( line, content );;
- content += "\n";
- }
- }
- mgr.stop_message( content );
- return 0;
- }
|