]> git.tdb.fi Git - builder.git/blobdiff - source/copy.cpp
Implement --build-all
[builder.git] / source / copy.cpp
index cdbbd48f1eead0b7c399a4b7ec7ad534252be2c4..0607b5de5b0d59c0bb3c285f9e0e48fee48eb80c 100644 (file)
@@ -1,5 +1,6 @@
 #include <errno.h>
 #include <fstream>
+#include <iostream>
 #include <msp/path/utils.h>
 #include "builder.h"
 #include "copy.h"
@@ -12,24 +13,39 @@ Copy::Copy(Builder &b, const Package &pkg, const Path::Path &s, const Path::Path
        Action(b),
        src(s),
        dest(d),
-       worker(*this)
+       worker(0)
 {
-       announce(pkg.get_name(), "INST", dest[-1]);
+       announce(pkg.get_name(), "COPY", dest[-1]);
        if(builder.get_verbose()>=2)
                cout<<s<<" -> "<<d<<'\n';
+       
+       if(!builder.get_dry_run())
+               worker=new Worker(*this);
 }
 
 int Copy::check()
 {
-       if(worker.get_done())
+       if(!worker)
+       {
+               signal_done.emit();
+               return 0;
+       }
+       
+       if(worker->get_done())
        {
                signal_done.emit();
-               worker.join();
-               return worker.get_error()?1:0;
+               worker->join();
+               return worker->get_error()?1:0;
        }
+       
        return -1;
 }
 
+Copy::~Copy()
+{
+       delete worker;
+}
+
 void Copy::Worker::main()
 {
        Path::mkpath(copy.dest.subpath(0, copy.dest.size()-1), 0755);