]> git.tdb.fi Git - builder.git/blob - source/sourcegenerator.h
69a41801e7b7e1e072812d00553e461468e18a53
[builder.git] / source / sourcegenerator.h
1 #ifndef SOURCEGENERATOR_H_
2 #define SOURCEGENERATOR_H_
3
4 #include <msp/datafile/objectloader.h>
5 #include "conditionalloader.h"
6 #include "sourcepackage.h"
7 #include "tool.h"
8
9 class SourceGenerator: public Tool
10 {
11 public:
12         class Loader: public Msp::DataFile::ObjectLoader<SourceGenerator>, public ConditionalLoader
13         {
14         public:
15                 Loader(SourceGenerator &);
16
17         private:
18                 void argument(const std::string &);
19                 void command(const std::string &);
20                 void in_suffix(const std::string &);
21                 void out_argument(const std::string &);
22                 void out_suffix(const std::string &);
23         };
24
25 private:
26         const SourcePackage &package;
27         std::list<std::string> out_suffixes;
28         std::list<std::string> arguments;
29         std::string out_argument;
30
31 public:
32         SourceGenerator(Builder &, const SourcePackage &, const std::string &);
33
34         virtual Target *create_source(const Component &, const Msp::FS::Path &) const;
35         virtual Target *create_target(const std::list<Target *> &, const std::string &);
36
37         virtual Task *run(const Target &) const;
38 };
39
40 #endif