]> git.tdb.fi Git - builder.git/blobdiff - source/component.h
Split class Package into SourcePackage and BinaryPackage
[builder.git] / source / component.h
index e5057352f0cf86b91787d8af3a7634c389bd6fed..387de4c5814e7bcd907ba5f9ee6b228a9131f0d9 100644 (file)
@@ -1,14 +1,21 @@
+/* $Id$
+
+This file is part of builder
+Copyright © 2006-2007 Mikko Rasa, Mikkosoft Productions
+Distributed under the LGPL
+*/
+
 #ifndef COMPONENT_H_
 #define COMPONENT_H_
 
 #include <string>
-#include <msp/parser/loader.h>
+#include <msp/datafile/loader.h>
 #include <msp/path/path.h>
 #include "buildinfo.h"
 #include "misc.h"
 #include "packageref.h"
 
-class Package;
+class SourcePackage;
 
 /**
 Components specify things to be built.  Each component may build one binary (it
@@ -20,7 +27,7 @@ class Component
 {
 public:
        /// Loads a Component from file.  Used from Package::Loader.
-       class Loader: public Msp::Parser::Loader
+       class Loader: public Msp::DataFile::Loader
        {
        public:
                Loader(Component &);
@@ -43,8 +50,8 @@ public:
                HEADERS
        };
 
-       Component(Package &, Type, const std::string &);
-       const Package     &get_package() const         { return pkg; }
+       Component(SourcePackage &, Type, const std::string &);
+       const SourcePackage &get_package() const         { return pkg; }
        Type              get_type() const             { return type; }
        const std::string &get_name() const            { return name; }
        const PathList    &get_sources() const         { return sources; }
@@ -56,8 +63,9 @@ public:
        bool              get_default() const          { return deflt; }
        void              resolve_refs();
        void              create_build_info();
+       void              create_targets() const;
 protected:
-       Package     &pkg;
+       SourcePackage &pkg;
        Type        type;
        std::string name;
        PathList    sources;
@@ -68,6 +76,8 @@ protected:
        BuildInfo   build_info;
        PkgRefList  requires;
        bool        deflt;
+
+       PathList    collect_source_files() const;
 };
 typedef std::list<Component> ComponentList;