X-Git-Url: http://git.tdb.fi/?a=blobdiff_plain;f=source%2Fanalyzer.cpp;h=2c9cf058d7a565d3849acca028e150d878f4e85c;hb=HEAD;hp=21ed52cec64b2cf463a62a1d9823870ea5917283;hpb=1a46151c99a406123c4ddfc797a7841baf3e4cc2;p=builder.git diff --git a/source/analyzer.cpp b/source/analyzer.cpp deleted file mode 100644 index 21ed52c..0000000 --- a/source/analyzer.cpp +++ /dev/null @@ -1,110 +0,0 @@ -#include -#include -#include -#include -#include "analyzer.h" -#include "builder.h" -#include "install.h" -#include "objectfile.h" -#include "package.h" -#include "target.h" - -using namespace std; -using namespace Msp; - -Analyzer::Analyzer(Builder &b): - builder(b), - max_depth(0), - full_paths(false) -{ } - -void Analyzer::analyze() -{ - TableRow row; - row.push_back("Name"); - row.push_back("Package"); - row.push_back("Type"); - row.push_back("Rebuild"); - table.push_back(row); - - build_depend_table(*builder.get_target("cmdline"), 0); - - print_table(); -} - -void Analyzer::build_depend_table(Target &tgt, unsigned depth) -{ - if(mode!=REBUILD && mode!=ALLDEPS) - { - if(dynamic_cast(&tgt)) - return build_depend_table(*tgt.get_depends().front(), depth); - else if(dynamic_cast(&tgt)) - return build_depend_table(*tgt.get_depends().front(), depth); - } - else if(mode==REBUILD && !tgt.get_rebuild()) - return; - - TableRow row; - - string fn; - if(full_paths) - fn=tgt.get_name(); - else - fn=Path::Path(tgt.get_name())[-1]; - row.push_back(string(depth*2, ' ')+fn); - - const Package *pkg=tgt.get_package(); - if(pkg) - row.push_back(pkg->get_name()); - else - row.push_back(""); - - row.push_back(tgt.get_type()); - - if(tgt.get_rebuild()) - { - if(tgt.get_rebuild_reason().empty()) - row.push_back("Yes (no reason)"); - else - row.push_back(tgt.get_rebuild_reason()); - } - - table.push_back(row); - - if(!max_depth || depth col_width; - - for(Table::const_iterator i=table.begin(); i!=table.end(); ++i) - { - if(col_width.size()size()) - col_width.resize(i->size(), 0); - for(unsigned j=0; jsize(); ++j) - col_width[j]=max(col_width[j], (*i)[j].size()); - } - - for(Table::const_iterator i=table.begin(); i!=table.end(); ++i) - { - ostringstream ss; - ss<size(); ++j) - { - if(j>0) - ss<<" "; - ss<get_name()get_name(); }