X-Git-Url: http://git.tdb.fi/?a=blobdiff_plain;ds=sidebyside;f=source%2Fbuilder.cpp;h=2ef5a709e1913d33cae79f1677ce1b21290d1cee;hb=0ac8d6708b8c758fb89d97a0049d4a329990b83b;hp=ee7eabfd1c9e93ff3913f510fb8e0ee09563cc7d;hpb=329dc80e392faf7354338621e73dba1880fc767d;p=builder.git diff --git a/source/builder.cpp b/source/builder.cpp index ee7eabf..2ef5a70 100644 --- a/source/builder.cpp +++ b/source/builder.cpp @@ -43,7 +43,7 @@ Builder::Builder(int argc, char **argv): dry_run(false), help(false), verbose(1), - chrome(false), + show_progress(false), build_file("Build"), jobs(1), conf_all(false), @@ -68,8 +68,8 @@ Builder::Builder(int argc, char **argv): getopt.add_option('A', "conf-all", conf_all, GetOpt::NO_ARG); getopt.add_option('B', "build-all", build_all, GetOpt::NO_ARG); getopt.add_option('C', "chdir", work_dir, GetOpt::REQUIRED_ARG); + getopt.add_option('P', "progress", show_progress, GetOpt::NO_ARG); getopt.add_option('W', "what-if", what_if, GetOpt::REQUIRED_ARG); - getopt.add_option( "chrome", chrome, GetOpt::NO_ARG); getopt.add_option( "conf-only", conf_only, GetOpt::NO_ARG); getopt.add_option( "full-paths", full_paths, GetOpt::NO_ARG); //getopt.add_option( "makefile", create_makefile, GetOpt::NO_ARG); @@ -97,8 +97,8 @@ Builder::Builder(int argc, char **argv): else if(!clean && !create_makefile) build=true; - const list &args=getopt.get_args(); - for(list::const_iterator i=args.begin(); i!=args.end(); ++i) + const vector &args=getopt.get_args(); + for(vector::const_iterator i=args.begin(); i!=args.end(); ++i) { unsigned equal=i->find('='); if(equal!=string::npos) @@ -426,8 +426,8 @@ void Builder::usage(const char *reason, const char *argv0, bool brief) " -A, --conf-all Apply configuration to all packages.\n" " -B, --build-all Build all targets unconditionally.\n" " -C, --chdir DIR Change to DIR before doing anything else.\n" + " -P, --progress Display progress while building.\n" " -W, --what-if FILE Pretend that FILE has changed.\n" - " --chrome Use extra chrome to print status.\n" " --conf-only Stop after configuring packages.\n" " --full-paths Output full paths in analysis.\n" //" --makefile Create a makefile for this package.\n" @@ -646,8 +646,6 @@ int Builder::do_build() vector actions; - if(chrome) - cout<<"0 targets built\n"; unsigned count=0; bool fail=false; @@ -663,6 +661,12 @@ int Builder::do_build() Action *action=tgt->build(); if(action) actions.push_back(action); + + if(show_progress) + { + cout<=0) { ++count; - if(chrome) - { - cout<<"\e["<0) @@ -699,8 +693,12 @@ int Builder::do_build() } } + if(show_progress) + cout<<"\033[K"; if(fail) cout<<"Build failed\n"; + else if(show_progress) + cout<<"Build complete\n"; return fail?1:0; }