]> git.tdb.fi Git - builder.git/commitdiff
Binary packages can't have files, so avoid some dynamic casts
authorMikko Rasa <tdb@tdb.fi>
Sun, 8 Jul 2012 22:50:23 +0000 (01:50 +0300)
committerMikko Rasa <tdb@tdb.fi>
Sun, 8 Jul 2012 22:50:23 +0000 (01:50 +0300)
source/analyzer.cpp
source/copy.cpp
source/file.h
source/filetarget.cpp
source/filetarget.h
source/objectfile.cpp
source/pkgconfiggenerator.cpp
source/tar.cpp
source/target.cpp
source/target.h

index 58c2b9035ee82e8589086f1e83aa1a7283e463a9..b04049683461f93f2e94fb5e66a6c00b5a68fdc1 100644 (file)
@@ -3,8 +3,8 @@
 #include "analyzer.h"
 #include "builder.h"
 #include "objectfile.h"
-#include "package.h"
 #include "sourcefile.h"
+#include "sourcepackage.h"
 #include "target.h"
 #include "tool.h"
 
index 5b524a40cd367d5e1973c6d2edfacc7d17ef33d5..0073320504b0daff45e2c9577a93e9ab4c095dff 100644 (file)
@@ -19,8 +19,7 @@ Copy::Copy(Builder &b):
 Target *Copy::create_target(const list<Target *> &sources, const string &arg) const
 {
        FileTarget &file_tgt = dynamic_cast<FileTarget &>(*sources.front());
-       const SourcePackage &pkg = dynamic_cast<const SourcePackage &>(*file_tgt.get_package());
-       InstalledFile *inst = new InstalledFile(builder, pkg, file_tgt, arg);
+       InstalledFile *inst = new InstalledFile(builder, *file_tgt.get_package(), file_tgt, arg);
        inst->set_tool(*this);
        return inst;
 }
index 4f5618f1565037723c1aa6609efe741f37f9f73c..0e92b72f13ffb934818d8aaba1bf0039ffc984ea 100644 (file)
@@ -10,7 +10,7 @@ class File: public FileTarget
 {
 public:
        File(Builder &b, const Msp::FS::Path &t): FileTarget(b, 0, t) { }
-       File(Builder &b, Package &p, const Msp::FS::Path &t): FileTarget(b, &p, t) { }
+       File(Builder &b, SourcePackage &p, const Msp::FS::Path &t): FileTarget(b, &p, t) { }
 
        virtual const char *get_type() const { return "File"; }
 };
index 6626db8ded177b79ed8ecd1f0b8bd5a81f3bf456..1c61810498937199f3ba35c6d5374febff18d151 100644 (file)
@@ -9,7 +9,7 @@
 using namespace std;
 using namespace Msp;
 
-FileTarget::FileTarget(Builder &b, const Package *p, const FS::Path &a):
+FileTarget::FileTarget(Builder &b, const SourcePackage *p, const FS::Path &a):
        Target(b, generate_name(p, a)),
        path(a),
        size(0)
@@ -50,18 +50,17 @@ void FileTarget::check_rebuild()
                }
        }
 
-       const SourcePackage *spkg = dynamic_cast<const SourcePackage *>(package);
-       if(!needs_rebuild() && spkg && spkg->get_config().get_mtime()>mtime)
+       if(!needs_rebuild() && package && package->get_config().get_mtime()>mtime)
                mark_rebuild("Package options changed");
 }
 
-string FileTarget::generate_name(const Package *pkg, const FS::Path &pth)
+string FileTarget::generate_name(const SourcePackage *pkg, const FS::Path &pth)
 {
-       if(const SourcePackage *spkg = dynamic_cast<const SourcePackage *>(pkg))
+       if(pkg)
        {
-               if(FS::descendant_depth(pth, spkg->get_source())>=0)
+               if(FS::descendant_depth(pth, pkg->get_source())>=0)
                {
-                       FS::Path relpath = FS::relative(pth, spkg->get_source());
+                       FS::Path relpath = FS::relative(pth, pkg->get_source());
                        return format("<%s>%s", pkg->get_name(), relpath.str().substr(1));
                }
                else if(FS::descendant_depth(pth, pkg->get_builder().get_prefix())>=0)
index 32092d0db05efd1bc428489684597db474215c9e..7d42c91c06e67b7fbe2a97e4bf9b3542f5be810d 100644 (file)
@@ -15,7 +15,7 @@ protected:
        Msp::Time::TimeStamp mtime;
        unsigned size;
 
-       FileTarget(Builder &, const Package *, const Msp::FS::Path &);
+       FileTarget(Builder &, const SourcePackage *, const Msp::FS::Path &);
 public:
        const Msp::FS::Path &get_path() const { return path; }
        const Msp::Time::TimeStamp &get_mtime() const { return mtime; }
@@ -29,7 +29,7 @@ public:
 protected:
        virtual void check_rebuild();
 private:
-       static std::string generate_name(const Package *, const Msp::FS::Path &);
+       static std::string generate_name(const SourcePackage *, const Msp::FS::Path &);
 };
 
 #endif
index 39372a415c0e67350d0a4862282a74e489dd213e..a27c067b6a881f8735124ccc7aae71a7b63f41d7 100644 (file)
@@ -42,7 +42,7 @@ void ObjectFile::find_depends(FileTarget *tgt)
        {
                /* The target has been displaced by installing it.  Displace any
                dependencies that come from the same package as well. */
-               const SourcePackage *tpkg = dynamic_cast<const SourcePackage *>(rtgt->get_package());
+               const SourcePackage *tpkg = rtgt->get_package();
                for(Dependencies::const_iterator i=tdeps.begin(); i!=tdeps.end(); ++i)
                {
                        FileTarget *file = dynamic_cast<FileTarget *>(*i);
index f29ae4a73b9c6373a70741a7180fcb47f15b7b39..141b363cda3d348692d93887cf335a84e9873d93 100644 (file)
@@ -33,7 +33,7 @@ PkgConfigGenerator::Worker::Worker(const PkgConfigFile &t):
 void PkgConfigGenerator::Worker::main()
 {
        Builder &builder = target.get_package()->get_builder();
-       const SourcePackage &spkg = dynamic_cast<const SourcePackage &>(*target.get_package());
+       const SourcePackage &spkg = *target.get_package();
 
        IO::BufferedFile out(target.get_path().str(), IO::M_WRITE);
        IO::print(out, "prefix=%s\n", builder.get_prefix().str());
index 49b4c0851fd9b26f74df1c4c557af80d3c3ae432..3bcf3cbc5fb1ebab8d83b3dd352af2c955518a15 100644 (file)
@@ -19,9 +19,8 @@ Target *Tar::create_target(const list<Target *> &sources, const string &arg) con
 {
        if(!sources.front()->get_package())
                throw invalid_argument("Tar::create_target");
-       const SourcePackage &src_pkg = dynamic_cast<const SourcePackage &>(*sources.front()->get_package());
 
-       TarBall *tarball = new TarBall(builder, src_pkg, arg);
+       TarBall *tarball = new TarBall(builder, *sources.front()->get_package(), arg);
        for(list<Target *>::const_iterator i=sources.begin(); i!=sources.end(); ++i)
                tarball->add_depend(*i);
 
index 095228b3b397c86434539e98c51cdc23ba4ef4e0..43ecb7ba313a1a68ce9fefb139997ace0e203584 100644 (file)
@@ -3,7 +3,7 @@
 #include <msp/strings/format.h>
 #include "builder.h"
 #include "filetarget.h"
-#include "package.h"
+#include "sourcepackage.h"
 #include "target.h"
 #include "task.h"
 #include "tool.h"
index 88642dc9ff5f446e1e30ee67e6c64a90df17c919..790a7e33626670ecc6ef546e4bb4e7caaab3191a 100644 (file)
@@ -10,7 +10,7 @@
 
 class Builder;
 class Component;
-class Package;
+class SourcePackage;
 class Task;
 class Tool;
 
@@ -40,7 +40,7 @@ public:
 
 protected:
        Builder &builder;
-       const Package *package;
+       const SourcePackage *package;
        const Component *component;
        std::string name;
 
@@ -57,7 +57,7 @@ public:
 
        virtual const char *get_type() const = 0;
        const std::string &get_name() const { return name; }
-       const Package *get_package() const { return package; }
+       const SourcePackage *get_package() const { return package; }
        const Component *get_component() const { return component; }
 
        /** Tries to locate a target that will help getting this target built.  If