X-Git-Url: http://git.tdb.fi/?a=blobdiff_plain;f=source%2Fcopy.cpp;h=31e62100d9751d991a0bf59529dd7699973e8ac5;hb=d1eb133ab529cdae131be7b150209f03189248f3;hp=2d2a7ca9c023c557954e05924d9181f4280dae97;hpb=d6f7c89d762191e0845e3636c0bc0cc1989b209f;p=builder.git diff --git a/source/copy.cpp b/source/copy.cpp index 2d2a7ca..31e6210 100644 --- a/source/copy.cpp +++ b/source/copy.cpp @@ -1,5 +1,7 @@ +#ifndef _WIN32 #include #include +#endif #include #include #include @@ -8,15 +10,12 @@ #include "builder.h" #include "copy.h" #include "installedfile.h" +#include "internaltask.h" using namespace std; using namespace Msp; -Copy::Copy(Builder &b): - Tool(b, "CP") -{ } - -Target *Copy::create_target(const list &sources, const string &arg) +Target *Copy::create_target(const vector &sources, const string &arg) { FileTarget &file_tgt = dynamic_cast(*sources.front()); InstalledFile *inst = new InstalledFile(builder, *file_tgt.get_package(), file_tgt, arg); @@ -27,23 +26,17 @@ Target *Copy::create_target(const list &sources, const string &arg) Task *Copy::run(const Target &target) const { const InstalledFile &install = dynamic_cast(target); - Worker *worker = new Worker(install); - InternalTask *task = new InternalTask(worker); + InternalTask *task = new InternalTask([&install]{ return _run(install); }); task->add_file(install.get_path()); task->set_unlink(); return task; } - -Copy::Worker::Worker(const InstalledFile &t): - target(t) -{ } - -void Copy::Worker::main() +bool Copy::_run(const InstalledFile &install) { - const FileTarget &source = target.get_source(); + const FileTarget &source = install.get_source(); const FS::Path &src_path = source.get_path(); - const FS::Path &dst_path = target.get_path(); + const FS::Path &dst_path = install.get_path(); try { @@ -61,16 +54,16 @@ void Copy::Worker::main() catch(const exception &e) { IO::print(IO::cerr, "%s\n", e.what()); - status = Task::ERROR; - return; + return false; } +#ifndef _WIN32 // Preserve file permissions struct stat st; if(stat(src_path.str().c_str(), &st)==0) chmod(dst_path.str().c_str(), st.st_mode&0777); - const FS::Path &link = target.get_symlink(); + const FS::Path &link = install.get_symlink(); if(!link.empty()) { FS::Path relpath = FS::relative(dst_path, FS::dirname(link)); @@ -78,6 +71,7 @@ void Copy::Worker::main() FS::unlink(link); symlink(relpath.str().c_str(), link.str().c_str()); } +#endif - status = Task::SUCCESS; + return true; }