X-Git-Url: http://git.tdb.fi/?a=blobdiff_plain;f=source%2Fanalyzer.cpp;h=563143f11c56d2c0b5a72b7f5e4fc58327d23f72;hb=75bdcf13fbd285e2006337ec606ca28fa4ddae9e;hp=e2b25bd6260bfdce4ede32c615dad72a6079b10b;hpb=74266a6e650f019063cdcd1c9a7bd26d8f99041b;p=builder.git diff --git a/source/analyzer.cpp b/source/analyzer.cpp index e2b25bd..563143f 100644 --- a/source/analyzer.cpp +++ b/source/analyzer.cpp @@ -1,12 +1,18 @@ -#include -#include -#include -#include +/* $Id$ + +This file is part of builder +Copyright © 2006-2009 Mikko Rasa, Mikkosoft Productions +Distributed under the LGPL +*/ + +#include +#include #include "analyzer.h" #include "builder.h" #include "install.h" #include "objectfile.h" #include "package.h" +#include "sourcefile.h" #include "target.h" using namespace std; @@ -19,11 +25,10 @@ Analyzer::Analyzer(Builder &b): full_paths(false) { } -/** -Performs the analysis and prints out the resulting dependency tree. -*/ void Analyzer::analyze() { + table.clear(); + TableRow row; row.push_back("Name"); row.push_back("Package"); @@ -36,37 +41,32 @@ void Analyzer::analyze() print_table(); } -/** -Adds rows to the table for the given target and it' dependencies. - -@param tgt Target to be processed -@param depth Recursion level of the target (top level is 0) -*/ void Analyzer::build_depend_table(Target &tgt, unsigned depth) { if(mode!=REBUILD && mode!=ALLDEPS) { // Skip trivial targets - 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); + if(ObjectFile *obj = dynamic_cast(&tgt)) + return build_depend_table(obj->get_source(), depth); + else if(Install *inst = dynamic_cast(&tgt)) + return build_depend_table(inst->get_source(), depth); } else if(mode==REBUILD && !tgt.get_rebuild()) /* All targets that depend on to-be-built targets will be rebuilt - themselves, so we cn stop here. */ + themselves, so we cn stop here. */ return; TableRow row; - string fn; - if(full_paths) - fn=tgt.get_name(); + string name; + FileTarget *ft = dynamic_cast(&tgt); + if(full_paths && ft) + name = ft->get_path().str(); else - fn=Path::Path(tgt.get_name())[-1]; - row.push_back(string(depth*2, ' ')+fn); + name = tgt.get_name(); + row.push_back(string(depth*2, ' ')+name); - const Package *pkg=tgt.get_package(); + const Package *pkg = tgt.get_package(); if(pkg) row.push_back(pkg->get_name()); else @@ -86,7 +86,7 @@ void Analyzer::build_depend_table(Target &tgt, unsigned depth) if(!max_depth || depth col_width; + vector col_width; // Determine column widths for(Table::const_iterator i=table.begin(); i!=table.end(); ++i) @@ -107,20 +104,19 @@ void Analyzer::print_table() const 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()); + 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<