]> git.tdb.fi Git - builder.git/blobdiff - source/binary.cpp
Split Binary filename generation to Executable and SharedLibrary
[builder.git] / source / binary.cpp
index 591e9347f59298cda7e454f56320d09fb173a4b3..17ec7353998f7fc7078c70d56bbb99762dfb7fa2 100644 (file)
@@ -1,65 +1,66 @@
-/* $Id$
-
-This file is part of builder
-Copyright © 2006-2009  Mikko Rasa, Mikkosoft Productions
-Distributed under the LGPL
-*/
-
 #include <msp/fs/utils.h>
-#include <msp/strings/formatter.h>
+#include <msp/strings/format.h>
 #include "binary.h"
 #include "builder.h"
 #include "component.h"
-#include "install.h"
 #include "link.h"
 #include "objectfile.h"
-#include "package.h"
 #include "sharedlibrary.h"
+#include "sourcepackage.h"
 #include "staticlibrary.h"
 
 using namespace std;
 using namespace Msp;
 
-Binary::Binary(Builder &b, const Component &c, const list<ObjectFile *> &objs):
-       FileTarget(b, &c.get_package(), generate_target_path(c)),
-       comp(c)
+Binary::Binary(Builder &b, const FS::Path &p):
+       FileTarget(b, 0, p)
+{ }
+
+Binary::Binary(Builder &b, const Component &c, const std::string &p, const list<ObjectFile *> &objs):
+       FileTarget(b, &c.get_package(), c.get_package().get_out_dir()/p)
 {
-       buildable=true;
+       component = &c;
        for(list<ObjectFile *>::const_iterator i=objs.begin(); i!=objs.end(); ++i)
                add_depend(*i);
 }
 
 void Binary::find_depends()
 {
-       LibMode libmode=comp.get_package().get_library_mode();
+       if(!component)
+       {
+               deps_ready = true;
+               return;
+       }
+
+       const SourcePackage &spkg = component->get_package();
+       LibMode libmode = spkg.get_library_mode();
        if(dynamic_cast<SharedLibrary *>(this))
-               libmode=DYNAMIC;
+               libmode = DYNAMIC;
 
        list<const Component *> queue;
        list<Target *> dep_libs;
-       queue.push_back(&comp);
+       queue.push_back(component);
        while(!queue.empty())
        {
-               const Component *c=queue.front();
+               const Component *c = queue.front();
                queue.erase(queue.begin());
 
-               const StringList &libpath=c->get_build_info().libpath;
+               const StringList &libpath = c->get_build_info().libpath;
 
-               const list<string> &libs=c->get_build_info().libs;
+               const list<string> &libs = c->get_build_info().libs;
                for(StringList::const_iterator i=libs.begin(); i!=libs.end(); ++i)
                {
-                       Target *lib=builder.get_library(*i, libpath, libmode);
+                       Target *lib = builder.get_vfs().find_library(*i, libpath, libmode);
                        if(lib)
                        {
                                dep_libs.push_back(lib);
 
-                               if(Install *inst=dynamic_cast<Install *>(lib))
-                                       lib=&inst->get_source();
-                               if(StaticLibrary *stlib=dynamic_cast<StaticLibrary *>(lib))
-                                       queue.push_back(&stlib->get_component());
+                               lib = lib->get_real_target();
+                               if(StaticLibrary *stlib = dynamic_cast<StaticLibrary *>(lib))
+                                       queue.push_back(stlib->get_component());
                        }
                        else
-                               builder.problem(comp.get_package().get_name(), format("Couldn't find library %s for %s", *i, FS::basename(name)));
+                               builder.problem(spkg.get_name(), format("Couldn't find library %s for %s", *i, name));
                }
        }
 
@@ -67,42 +68,12 @@ void Binary::find_depends()
        This ensures that static library ordering is correct. */
        for(list<Target *>::iterator i=dep_libs.begin(); i!=dep_libs.end(); ++i)
        {
-               bool last=true;
+               bool last = true;
                for(list<Target *>::iterator j=i; (last && j!=dep_libs.end()); ++j)
-                       last=(j==i || *j!=*i);
+                       last = (j==i || *j!=*i);
                if(last)
                        add_depend(*i);
        }
 
-       deps_ready=true;
-}
-
-Action *Binary::create_action()
-{
-       return new Link(builder, *this);
-}
-
-FS::Path Binary::generate_target_path(const Component &c)
-{
-       const SourcePackage &pkg=c.get_package();
-       string prefix, suffix;
-       const string &arch=pkg.get_builder().get_current_arch().get_name();
-
-       if(c.get_type()==Component::LIBRARY)
-       {
-               prefix="lib";
-               if(arch=="win32")
-                       suffix=".dll";
-               else
-                       suffix=".so";
-       }
-       else if(c.get_type()==Component::MODULE)
-               suffix=".m";
-       else if(c.get_type()==Component::PROGRAM)
-       {
-               if(arch=="win32")
-                       suffix=".exe";
-       }
-
-       return pkg.get_out_dir()/(prefix+c.get_name()+suffix);
+       deps_ready = true;
 }