Skip to content

Property reporting utilities [blocks: 3584] #3583

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 3 commits into from
Jan 14, 2019
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions src/goto-checker/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ SRC = bmc_util.cpp \
incremental_goto_checker.cpp \
goto_verifier.cpp \
properties.cpp \
report_util.cpp \
solver_factory.cpp \
symex_coverage.cpp \
symex_bmc.cpp \
Expand Down
130 changes: 130 additions & 0 deletions src/goto-checker/report_util.cpp
Original file line number Diff line number Diff line change
@@ -0,0 +1,130 @@
/*******************************************************************\

Module: Bounded Model Checking Utilities

Author: Daniel Kroening, Peter Schrammel

\*******************************************************************/

/// \file
/// Bounded Model Checking Utilities

#include "report_util.h"

#include <algorithm>

#include <util/json.h>
#include <util/ui_message.h>
#include <util/xml.h>

void output_properties(
const propertiest &properties,
ui_message_handlert &ui_message_handler)
{
messaget log(ui_message_handler);
switch(ui_message_handler.get_ui())
{
case ui_message_handlert::uit::PLAIN:
{
log.result() << "\n** Results:" << messaget::eom;
// collect properties in a vector
std::vector<propertiest::const_iterator> sorted_properties;
for(auto p_it = properties.begin(); p_it != properties.end(); p_it++)
sorted_properties.push_back(p_it);
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Maybe we should introduce sorted ranges (i.e., add a sort alongside concat, filter)?

Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Just to confirm as discussed out of band: this was just an idea while reading this code, no need for changes in here.

// now determine an ordering for those goals:
// 1. alphabetical ordering of file name
// 2. numerical ordering of line number
// 3. alphabetical ordering of goal ID
std::sort(
sorted_properties.begin(),
sorted_properties.end(),
[](propertiest::const_iterator pit1, propertiest::const_iterator pit2) {
const auto &p1 = pit1->second.pc->source_location;
const auto &p2 = pit2->second.pc->source_location;
if(p1.get_file() != p2.get_file())
return id2string(p1.get_file()) < id2string(p2.get_file());
else if(!p1.get_line().empty() && !p2.get_line().empty())
return std::stoul(id2string(p1.get_line())) <
std::stoul(id2string(p2.get_line()));
else
return id2string(pit1->first) < id2string(pit2->first);
});
// now show in the order we have determined
irep_idt previous_function;
irep_idt current_file;
for(const auto &p : sorted_properties)
{
const auto &l = p->second.pc->source_location;
if(l.get_function() != previous_function)
{
if(!previous_function.empty())
log.result() << '\n';
previous_function = l.get_function();
if(!previous_function.empty())
{
current_file = l.get_file();
if(!current_file.empty())
log.result() << current_file << ' ';
if(!l.get_function().empty())
log.result() << "function " << l.get_function();
log.result() << messaget::eom;
}
}
log.result() << messaget::faint << '[' << p->first << "] "
<< messaget::reset;
if(l.get_file() != current_file)
log.result() << "file " << l.get_file() << ' ';
if(!l.get_line().empty())
log.result() << "line " << l.get_line() << ' ';
log.result() << p->second.description << ": ";
switch(p->second.status)
{
case property_statust::NOT_CHECKED:
log.result() << messaget::magenta;
break;
case property_statust::UNKNOWN:
log.result() << messaget::yellow;
break;
case property_statust::NOT_REACHABLE:
log.result() << messaget::bright_green;
break;
case property_statust::PASS:
log.result() << messaget::green;
break;
case property_statust::FAIL:
log.result() << messaget::red;
break;
case property_statust::ERROR:
log.result() << messaget::bright_red;
break;
}
log.result() << as_string(p->second.status) << messaget::reset
<< messaget::eom;
}
log.status() << "\n** "
<< count_properties(properties, property_statust::FAIL)
<< " of " << properties.size() << " failed" << messaget::eom;
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Should we really print this unconditionally?

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

That's what is happening at the moment: https://github.com/diffblue/cbmc/blob/develop/src/cbmc/all_properties.cpp#L246
Which condition do you have in mind?

Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Ah, yes, I had missed that.

break;
}
case ui_message_handlert::uit::XML_UI:
{
for(const auto &property_pair : properties)
{
log.result() << xml(property_pair.first, property_pair.second);
}
break;
}
case ui_message_handlert::uit::JSON_UI:
{
json_stream_objectt &json_result =
ui_message_handler.get_json_stream().push_back_stream_object();
json_stream_arrayt &result_array =
json_result.push_back_stream_array("result");
for(const auto &property_pair : properties)
{
result_array.push_back(json(property_pair.first, property_pair.second));
}
break;
}
}
}
23 changes: 23 additions & 0 deletions src/goto-checker/report_util.h
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
/*******************************************************************\

Module: Bounded Model Checking Utilities

Author: Daniel Kroening, Peter Schrammel

\*******************************************************************/

/// \file
/// Bounded Model Checking Utilities

#ifndef CPROVER_GOTO_CHECKER_REPORT_UTIL_H
#define CPROVER_GOTO_CHECKER_REPORT_UTIL_H

#include "properties.h"

class ui_message_handlert;

void output_properties(
const propertiest &properties,
ui_message_handlert &ui_message_handler);

#endif // CPROVER_GOTO_CHECKER_REPORT_UTIL_H